trick/test/SIM_trickcomm/test_struct.h
Alex Lin 9ddc786ace Split test sims and fun sims into separate directories.
Moved most of the rest of the sims to test.

refs #191
2016-02-23 16:19:30 -06:00

17 lines
328 B
C

#ifndef TEST_STRUCT_H
#define TEST_STRUCT_H
typedef struct {
int int1; /* -- Foo */
int int2; /* -- Foo */
long long1; /* -- Foo */
long long2; /* -- Foo */
double double1; /* -- Foo */
double double2; /* -- Foo */
} TEST_DATA_STRUCT ;
#endif