diff options
author | David Krause <david@cvs.openbsd.org> | 2003-06-27 17:08:46 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-06-27 17:08:46 +0000 |
commit | 2dfbfdaa774fe3779573729966b417fd5d86438b (patch) | |
tree | 7aec3dc5126c95a03ddd86ff88d1162af821dfc6 /usr.bin/diff | |
parent | f3f9a16fca639a1fcc8b608d0f27d970daf174f4 (diff) |
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" |