opnsense-src/contrib/netbsd-tests/lib/libc/rpc/h_testbits.x
Enji Cooper 57718be8fa Import the NetBSD test suite from ^/vendor/NetBSD/tests/09.30.2014_20.45 ,
minus the vendor Makefiles

Provide directions for how to bootstrap the vendor sources in
FREEBSD-upgrade

MFC after 2 weeks
Discussed with: rpaulo
Sponsored by: EMC / Isilon Storage Division
2014-10-02 23:26:49 +00:00

21 lines
275 B
Text

/* $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
};