repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tools/llvm: Do not build with symbols
[minix3.git]
/
tests
/
lib
/
libc
/
rpc
/
h_testbits.x
blob
cbddfcc90ca5b285e0484d26a0741f4a770ac54f
1
/* $NetBSD: h_testbits.x,v 1.1 2011/01/08 06:59:37 pgoyette Exp $ */
2
3
enum smallenum {
4
SE_ONE = 1,
5
SE_TWO = 2
6
};
7
8
enum medenum {
9
ME_NEG = -1234,
10
ME_ONE = 1,
11
ME_TWO = 2,
12
ME_MANY = 1234
13
};
14
15
enum bigenum {
16
BE_ONE = 1,
17
BE_TWO = 2,
18
BE_MANY = 1234,
19
BE_LOTS = 1234567
20
};
21