1*11be35a1SLionel Sambuc /* $NetBSD: h_testbits.x,v 1.1 2011/01/08 06:59:37 pgoyette Exp $ */ 2*11be35a1SLionel Sambuc 3*11be35a1SLionel Sambuc enum smallenum { 4*11be35a1SLionel Sambuc SE_ONE = 1, 5*11be35a1SLionel Sambuc SE_TWO = 2 6*11be35a1SLionel Sambuc }; 7*11be35a1SLionel Sambuc 8*11be35a1SLionel Sambuc enum medenum { 9*11be35a1SLionel Sambuc ME_NEG = -1234, 10*11be35a1SLionel Sambuc ME_ONE = 1, 11*11be35a1SLionel Sambuc ME_TWO = 2, 12*11be35a1SLionel Sambuc ME_MANY = 1234 13*11be35a1SLionel Sambuc }; 14*11be35a1SLionel Sambuc 15*11be35a1SLionel Sambuc enum bigenum { 16*11be35a1SLionel Sambuc BE_ONE = 1, 17*11be35a1SLionel Sambuc BE_TWO = 2, 18*11be35a1SLionel Sambuc BE_MANY = 1234, 19*11be35a1SLionel Sambuc BE_LOTS = 1234567 20*11be35a1SLionel Sambuc }; 21*11be35a1SLionel Sambuc 22