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