summaryrefslogtreecommitdiff
path: root/lib/libc/gen/syslog.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:03:12 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:03:12 +0000
commita82bbc730e20fe9dec4abeb1d949b2d02869032a (patch)
tree96c195652047b452e756960d6bdfc6786443c564 /lib/libc/gen/syslog.c
parent6ba807ae3ad4a36737776b8360698979fb378d97 (diff)
Notes
Diffstat (limited to 'lib/libc/gen/syslog.c')
-rw-r--r--lib/libc/gen/syslog.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/gen/syslog.c b/lib/libc/gen/syslog.c
index 621e63a4b035..fa19907ca2cf 100644
--- a/lib/libc/gen/syslog.c
+++ b/lib/libc/gen/syslog.c
@@ -54,11 +54,7 @@ __FBSDID("$FreeBSD$");
#include <time.h>
#include <unistd.h>
-#if __STDC__
#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
#include "un-namespace.h"
#include "libc_private.h"
@@ -113,22 +109,11 @@ int writehook(cookie, buf, len)
* print message on log file; output is intended for syslogd(8).
*/
void
-#if __STDC__
syslog(int pri, const char *fmt, ...)
-#else
-syslog(pri, fmt, va_alist)
- int pri;
- char *fmt;
- va_dcl
-#endif
{
va_list ap;
-#if __STDC__
va_start(ap, fmt);
-#else
- va_start(ap);
-#endif
vsyslog(pri, fmt, ap);
va_end(ap);
}