xref: /csrg-svn/old/pcc/ccom.tahoe/tests/byte.c (revision 44032)
1*44032Sbostic char c;
2*44032Sbostic short w;
3*44032Sbostic long l;
4*44032Sbostic 
f()5*44032Sbostic f() {
6*44032Sbostic 	if ((unsigned)c <= 0177)
7*44032Sbostic 		c = 0;
8*44032Sbostic 	if ((unsigned)w <= 0xefff)
9*44032Sbostic 		w = 0;
10*44032Sbostic 	if ((unsigned)l <= 0xefffffff)
11*44032Sbostic 		l = 0;
12*44032Sbostic }
13