diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-19 19:39:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-19 19:39:42 +0000 |
commit | 3923126b85f9e8a77cab9a41b5a62125acd5b4cd (patch) | |
tree | 1a8b19c5db03f8c989fc8228811837b182feb7a3 /usr.sbin/altq | |
parent | cc03bdb70090357d2393b6ec82e3cde4d5ce5edd (diff) |
We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.
Diffstat (limited to 'usr.sbin/altq')
-rw-r--r-- | usr.sbin/altq/altqd/libaltq2.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/usr.sbin/altq/altqd/libaltq2.c b/usr.sbin/altq/altqd/libaltq2.c index d546905b39d..f8c7a684abd 100644 --- a/usr.sbin/altq/altqd/libaltq2.c +++ b/usr.sbin/altq/altqd/libaltq2.c @@ -38,11 +38,7 @@ #include <errno.h> #include <string.h> #include <syslog.h> -#ifdef __STDC__ #include <stdarg.h> -#else -#include <varargs.h> -#endif #include "altq_qop.h" @@ -62,11 +58,7 @@ log_write(int severity, int syserr, const char *format, ...) { va_list ap; -#ifdef __STDC__ va_start(ap, format); -#else - va_start(ap); -#endif if (severity <= l_debug) { if (!daemonize) { |