aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/tests/ctest.c
diff options
context:
space:
mode:
Diffstat (limited to 'gfsm/gfsm/src/libgfsm/tests/ctest.c')
-rw-r--r--gfsm/gfsm/src/libgfsm/tests/ctest.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gfsm/gfsm/src/libgfsm/tests/ctest.c b/gfsm/gfsm/src/libgfsm/tests/ctest.c
deleted file mode 100644
index 78d9002..0000000
--- a/gfsm/gfsm/src/libgfsm/tests/ctest.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-
-typedef struct testme_s {
- int i : 1;
- int j : 1;
- int k : 1;
-} testme_t;
-
-int main (void) {
- int x,y,z;
- float f = +inf;
- printf("sizeof(testme_t)=%u\n", sizeof(testme_t));
-
- z = (x=42,y=24,17);
- printf ("z = (x=42,y=24) = %d\n", z);
- printf("f = %g\n", f);
- return 0;
-}