diff options
Diffstat (limited to 'test.c')
| -rw-r--r-- | test.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -71,6 +71,14 @@ void fill(char *p, int c, unsigned long n) void zero(void *p, unsigned long n) { fill(p,0,n); } +enum ball { + Zero, + Two = 2, + Three, + One = Zero + 1, + W = 1l<<44 +}; + main(t) { putc(t + 1, t + 2); } |