diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-01 11:28:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-07-01 11:28:07 +0000 |
commit | 1ab0847fc58df12184337aa766f3b663bd21df9d (patch) | |
tree | 6bca532b1b5f57c6ef3b40d026e7ef9c1b53da24 /lib/libc/gen | |
parent | d5cf9668782ed199afd0865ce6eb8f02882617cc (diff) |
need string.h
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/vis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/vis.c b/lib/libc/gen/vis.c index 76c44acebfd..d33c456e109 100644 --- a/lib/libc/gen/vis.c +++ b/lib/libc/gen/vis.c @@ -32,12 +32,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vis.c,v 1.9 2002/07/01 07:48:50 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: vis.c,v 1.10 2002/07/01 11:28:06 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> #include <limits.h> #include <ctype.h> +#include <string.h> #include <vis.h> #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') |