diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-04-30 14:59:20 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-04-30 14:59:20 +0000 |
commit | f9f9d31e96c4f009963f7e4bbfff6163d960d880 (patch) | |
tree | cc1630dcae064b74ed324e8f39bea070442b7759 /usr.bin | |
parent | bd19f8cd333b3ff4f86fa458e910107e80487152 (diff) |
kill warning about implicit decl of strlen
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/window/wwinit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/window/wwinit.c b/usr.bin/window/wwinit.c index 38dff463247..1bdd0d3f229 100644 --- a/usr.bin/window/wwinit.c +++ b/usr.bin/window/wwinit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wwinit.c,v 1.13 2003/04/19 23:56:09 dhartmei Exp $ */ +/* $OpenBSD: wwinit.c,v 1.14 2003/04/30 14:59:19 jason Exp $ */ /* $NetBSD: wwinit.c,v 1.11 1996/02/08 21:49:07 mycroft Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)wwinit.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: wwinit.c,v 1.13 2003/04/19 23:56:09 dhartmei Exp $"; +static char rcsid[] = "$OpenBSD: wwinit.c,v 1.14 2003/04/30 14:59:19 jason Exp $"; #endif #endif /* not lint */ @@ -50,6 +50,7 @@ static char rcsid[] = "$OpenBSD: wwinit.c,v 1.13 2003/04/19 23:56:09 dhartmei Ex #include "tt.h" #include <sys/signal.h> #include <fcntl.h> +#include <string.h> #include "char.h" wwinit() |