mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
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
21 lines
275 B
Text
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
|
|
};
|
|
|