Clean up vendor ID and FBSDID.

We now seem to include <arpa/inet.h> to get ntoh*.
This commit is contained in:
David Malone 2002-03-30 14:18:15 +00:00
parent 27d57ea9bf
commit 6dfc206096
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93428

View File

@ -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>