diff options
author | 2003-06-27 17:08:45 +0000 | |
---|---|---|
committer | 2003-06-27 17:08:45 +0000 | |
commit | e582024b69ffd25a0b394be3f34fa70ffaaaec9e (patch) | |
tree | 86f7585c816a186e3be9d4e825bbf8ad9c7e38b1 /usr.bin/diff | |
parent | kqueue support for various usb devices including: usb, uhid, ugen, (diff) | |
download | wireguard-openbsd-e582024b69ffd25a0b394be3f34fa70ffaaaec9e.tar.xz wireguard-openbsd-e582024b69ffd25a0b394be3f34fa70ffaaaec9e.zip |
kill a warning: include <string.h>
ok tedu@
Diffstat (limited to 'usr.bin/diff')
-rw-r--r-- | usr.bin/diff/diff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c index 63fb2e40abe..4abc8821cbb 100644 --- a/usr.bin/diff/diff.c +++ b/usr.bin/diff/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.17 2003/06/26 22:04:45 millert Exp $ */ +/* $OpenBSD: diff.c,v 1.18 2003/06/27 17:08:45 david Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -37,6 +37,7 @@ #include <errno.h> #include <stdlib.h> #include <stdarg.h> +#include <string.h> #include <unistd.h> #include "diff.h" |