diff options
| author | cgd <cgd@NetBSD.org> | 1995-09-29 00:44:02 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1995-09-29 00:44:02 +0000 |
| commit | f676bc478a458300627744279dddb2eda3d8985d (patch) | |
| tree | 6a6849e5b35ed5535ceecaf60d0439474f8c1945 /usr.bin/window/string.c | |
| parent | b3658dd411640c1329566589ffa34383d3efb87e (diff) | |
need <string.h> for strlen() protos. can't just add it to "string.h",
since not all files that need the proto include that.
CVS ----------------------------------------------------------------------
Diffstat (limited to 'usr.bin/window/string.c')
| -rw-r--r-- | usr.bin/window/string.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/window/string.c b/usr.bin/window/string.c index b6a92ae1893..2f5bee41dc1 100644 --- a/usr.bin/window/string.c +++ b/usr.bin/window/string.c @@ -1,4 +1,4 @@ -/* $NetBSD: string.c,v 1.4 1995/09/28 10:34:39 tls Exp $ */ +/* $NetBSD: string.c,v 1.5 1995/09/29 00:44:06 cgd Exp $ */ /* * Copyright (c) 1983, 1993 @@ -40,12 +40,13 @@ #if 0 static char sccsid[] = "@(#)string.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$NetBSD: string.c,v 1.4 1995/09/28 10:34:39 tls Exp $"; +static char rcsid[] = "$NetBSD: string.c,v 1.5 1995/09/29 00:44:06 cgd Exp $"; #endif #endif /* not lint */ #include "string.h" #include <stdlib.h> +#include <string.h> char * str_cpy(s) |
