diff options
author | 2003-06-25 02:42:50 +0000 | |
---|---|---|
committer | 2003-06-25 02:42:50 +0000 | |
commit | c1ddde46c5288deb73d1eb39b02f8844550ca755 (patch) | |
tree | af170b221e43bbaf4cefe607a3141f22659c5d0a /usr.bin/diff | |
parent | Avoid a divide by zero by (diff) | |
download | wireguard-openbsd-c1ddde46c5288deb73d1eb39b02f8844550ca755.tar.xz wireguard-openbsd-c1ddde46c5288deb73d1eb39b02f8844550ca755.zip |
-Wall
Diffstat (limited to 'usr.bin/diff')
-rw-r--r-- | usr.bin/diff/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/diff/Makefile b/usr.bin/diff/Makefile index 87be2e8af64..92854469cef 100644 --- a/usr.bin/diff/Makefile +++ b/usr.bin/diff/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.1 2003/06/25 01:25:59 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 2003/06/25 02:42:50 deraadt Exp $ PROG= diff SRCS= diff.c diffdir.c diffreg.c +COPTS+= -Wall .include <bsd.prog.mk> |