diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2002-03-30 14:18:15 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2002-03-30 14:18:15 +0000 |
| commit | 6dfc20609648b185919da2acc634dc4532e465bc (patch) | |
| tree | ba481e2df0f957b3ceada524b337ddf042dd18fb | |
| parent | 27d57ea9bfc0d7f90e8021dcb5728ab38ad84ebf (diff) | |
Notes
| -rw-r--r-- | usr.bin/tftp/tftp.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c index a64ea780fbdab..7b4eb95032ca8 100644 --- a/usr.bin/tftp/tftp.c +++ b/usr.bin/tftp/tftp.c @@ -31,14 +31,15 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> - -__FBSDID("$FreeBSD$"); - +#if 0 #ifndef lint -static const char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; +static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; +#endif /* not lint */ #endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* Many bug fixes are from Jim Guyton <guyton@rand-unix> */ /* @@ -50,6 +51,7 @@ static const char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #include <netinet/in.h> +#include <arpa/inet.h> #include <arpa/tftp.h> #include <err.h> |
