svn commit: r189815 - head/sys/sys

David Schultz das at FreeBSD.org
Sat Mar 14 12:07:26 PDT 2009


Author: das
Date: Sat Mar 14 19:07:25 2009
New Revision: 189815
URL: http://svn.freebsd.org/changeset/base/189815

Log:
  Namespace: vsyslog() is a BSD extension.

Modified:
  head/sys/sys/syslog.h

Modified: head/sys/sys/syslog.h
==============================================================================
--- head/sys/sys/syslog.h	Sat Mar 14 19:06:52 2009	(r189814)
+++ head/sys/sys/syslog.h	Sat Mar 14 19:07:25 2009	(r189815)
@@ -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 */


More information about the svn-src-all mailing list