From ce76f2cfa757cf9eaa55fb3b920e8321dd37ef51 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sat, 14 Mar 2009 19:07:25 +0000 Subject: [PATCH] Namespace: vsyslog() is a BSD extension. --- sys/sys/syslog.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sys/syslog.h b/sys/sys/syslog.h index fe2d0fee7cb3..6f12831434bd 100644 --- a/sys/sys/syslog.h +++ b/sys/sys/syslog.h @@ -193,7 +193,9 @@ void closelog(void); void openlog(const char *, int, int); int setlogmask(int); void syslog(int, const char *, ...) __printflike(2, 3); +#if __BSD_VISIBLE void vsyslog(int, const char *, __va_list) __printflike(2, 0); +#endif __END_DECLS #endif /* !_KERNEL */