diff options
author | jb <jb@FreeBSD.org> | 1998-02-20 04:33:03 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-02-20 04:33:03 +0000 |
commit | 0c290fd53e4ef28be441be8355d350329b5c3804 (patch) | |
tree | 11d2c91a30ebce50e2b505e16e9555d57d18f804 /usr.bin/unexpand | |
parent | 78fe14dd306d7197c2607622fbaa56f153c7734b (diff) | |
download | FreeBSD-src-0c290fd53e4ef28be441be8355d350329b5c3804.zip FreeBSD-src-0c290fd53e4ef28be441be8355d350329b5c3804.tar.gz |
Add #include <string.h> to get prototypes.
Diffstat (limited to 'usr.bin/unexpand')
-rw-r--r-- | usr.bin/unexpand/unexpand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c index b0c069b..4d70913 100644 --- a/usr.bin/unexpand/unexpand.c +++ b/usr.bin/unexpand/unexpand.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: unexpand.c,v 1.2 1997/08/20 11:05:28 charnier Exp $"; + "$Id: unexpand.c,v 1.3 1997/08/26 11:02:36 charnier Exp $"; #endif /* not lint */ /* @@ -50,6 +50,7 @@ static const char rcsid[] = */ #include <err.h> #include <stdio.h> +#include <string.h> char genbuf[BUFSIZ]; char linebuf[BUFSIZ]; |