repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
regress
/
lib
/
libc
/
rpc
/
xdr
/
testbits.x
blob
22eeb674be923a45f8821bfdc9c4f439a22a2944
1
/* $NetBSD$ */
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
};