allow for 32/64 bit builds
[tridge/junkcode.git] / boolbit.c
1 #include <stdio.h>
2
3 typedef unsigned:1 BOOL;
4
5 int main(void)
6 {
7         BOOL b;
8
9         b = 3;
10         
11         printf("b=%u\n", (unsigned)b);
12
13         return 0;
14 }