diff options
author | gjb <gjb@FreeBSD.org> | 2014-10-14 15:37:19 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2014-10-14 15:37:19 +0000 |
commit | 49bc9d1f7ffccd05cb04d7cb7b41a1ee2f39b46d (patch) | |
tree | acfa7870dec8e734f823d6db57d1b0799de03ad1 /contrib/netbsd-tests/lib/libc/rpc/h_testbits.x | |
parent | 8521a45a5518d0da7ec2b53f2abb0f433d612a61 (diff) | |
parent | 594c54630f7d35d5f8feece66ae5ef818703cd18 (diff) | |
download | FreeBSD-src-49bc9d1f7ffccd05cb04d7cb7b41a1ee2f39b46d.zip FreeBSD-src-49bc9d1f7ffccd05cb04d7cb7b41a1ee2f39b46d.tar.gz |
Reintegrate head@r273095
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'contrib/netbsd-tests/lib/libc/rpc/h_testbits.x')
-rw-r--r-- | contrib/netbsd-tests/lib/libc/rpc/h_testbits.x | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/rpc/h_testbits.x b/contrib/netbsd-tests/lib/libc/rpc/h_testbits.x new file mode 100644 index 0000000..cbddfcc --- /dev/null +++ b/contrib/netbsd-tests/lib/libc/rpc/h_testbits.x @@ -0,0 +1,21 @@ +/* $NetBSD: h_testbits.x,v 1.1 2011/01/08 06:59:37 pgoyette Exp $ */ + +enum smallenum { + SE_ONE = 1, + SE_TWO = 2 +}; + +enum medenum { + ME_NEG = -1234, + ME_ONE = 1, + ME_TWO = 2, + ME_MANY = 1234 +}; + +enum bigenum { + BE_ONE = 1, + BE_TWO = 2, + BE_MANY = 1234, + BE_LOTS = 1234567 +}; + |