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/tftp | |
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/tftp')
-rw-r--r-- | usr.bin/tftp/tftp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c index 014e287..cd3ecd3 100644 --- a/usr.bin/tftp/tftp.c +++ b/usr.bin/tftp/tftp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: tftp.c,v 1.2 1997/08/14 06:47:40 charnier Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton <guyton@rand-unix> */ @@ -57,6 +57,7 @@ static const char rcsid[] = #include <setjmp.h> #include <signal.h> #include <stdio.h> +#include <string.h> #include <unistd.h> #include "extern.h" |