Assume __STDC__, remove non-__STDC__ code. Remove private __P.

This commit is contained in:
Alfred Perlstein 2002-05-28 18:39:53 +00:00
parent 91180daf65
commit f74779bdab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97419
2 changed files with 4 additions and 24 deletions

View File

@ -37,11 +37,7 @@ SOFTWARE.
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include <sys/types.h>
#include <sys/time.h>
@ -89,17 +85,8 @@ SOFTWARE.
* Externals, forward declarations, and global variables
*/
#ifdef __STDC__
#define P(args) args
#else
#define P(args) ()
#endif
static void mktagfile P((struct host *));
static void usage P((void));
#undef P
static void mktagfile(struct host *);
static void usage(void);
/*
* General

View File

@ -1,4 +1,5 @@
/* bootptest.h */
/* $FreeBSD$ */
/*
* Hacks for sharing print-bootp.c between tcpdump and bootptest.
*/
@ -19,12 +20,4 @@ extern int vflag; /* verbose flag */
extern unsigned char *packetp;
extern unsigned char *snapend;
#ifdef __STDC__
#define P(args) args
#else
#define P(args) ()
#endif
extern char *ipaddr_string P((struct in_addr *));
#undef P
extern char *ipaddr_string(struct in_addr *);