don't set page size by default
[tridge/junkcode.git] / enum.c
1 #include <stdio.h>
2
3 enum xxy;
4
5 typedef struct { int v; } BOOL;
6 typedef enum {NO_PROBLEM=0, BLAH=1} NT_STATUS;
7 #define False 0
8
9 static BOOL foo1(void)
10 {
11         return False;
12 }
13
14 static void foo2(NT_STATUS x)
15 {
16         printf("x=%d\n", x);
17 }
18
19 int main(void)
20 {
21         foo2(foo1());
22         return 0;
23 }