xref: /openbsd/regress/usr.bin/make/mk28 (revision 274d7c50)
1# $OpenBSD: mk28,v 1.1 2008/11/24 16:22:38 espie Exp $
2# checks that hex constants evaluate correctly
3# (bug from NetBSD)
4
5B=222
6.if $B == 0xDE
7A=0
8.else
9A=1
10.endif
11
12all:
13	@exit $A
14
15.PHONY: all
16