diff options
author | jb <jb@FreeBSD.org> | 1998-02-20 04:48:37 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-02-20 04:48:37 +0000 |
commit | 7f92b62ee315cfd4e6dce7f0155782194438d5ce (patch) | |
tree | 42b6fa17c87882518be46afb7be669528d856448 /usr.bin/mkstr | |
parent | 6d9d1ccd14b323b811a9cbd52a4492e9a7b37fe6 (diff) | |
download | FreeBSD-src-7f92b62ee315cfd4e6dce7f0155782194438d5ce.zip FreeBSD-src-7f92b62ee315cfd4e6dce7f0155782194438d5ce.tar.gz |
Add #include <string.h> to get prototypes.
Diffstat (limited to 'usr.bin/mkstr')
-rw-r--r-- | usr.bin/mkstr/mkstr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mkstr/mkstr.c b/usr.bin/mkstr/mkstr.c index 7f2efe2..588af2c 100644 --- a/usr.bin/mkstr/mkstr.c +++ b/usr.bin/mkstr/mkstr.c @@ -42,12 +42,13 @@ static const char copyright[] = static char sccsid[] = "@(#)mkstr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mkstr.c,v 1.2 1997/07/24 07:05:02 charnier Exp $"; #endif /* not lint */ #include <err.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #define ungetchar(c) ungetc(c, stdin) |