move vsyslog out of SYSLOG_NAMES conditional

This commit is contained in:
Rich Felker 2012-05-10 22:41:54 -04:00
parent 9cfa3065c5
commit c8b01e73ca
1 changed files with 4 additions and 2 deletions

View File

@ -59,7 +59,9 @@ void openlog (const char *, int, int);
int setlogmask (int); int setlogmask (int);
void syslog (int, const char *, ...); void syslog (int, const char *, ...);
#if defined(_GNU_SOURCE) && defined(SYSLOG_NAMES) #if defined(_GNU_SOURCE)
void vsyslog (int, const char *, va_list);
#if defined(SYSLOG_NAMES)
#define __NEED_va_list #define __NEED_va_list
#include <bits/alltypes.h> #include <bits/alltypes.h>
#define INTERNAL_NOPRI 0x10 #define INTERNAL_NOPRI 0x10
@ -89,7 +91,7 @@ typedef struct {
{ "local2", LOG_LOCAL2 }, { "local3", LOG_LOCAL3 }, \ { "local2", LOG_LOCAL2 }, { "local3", LOG_LOCAL3 }, \
{ "local4", LOG_LOCAL4 }, { "local5", LOG_LOCAL5 }, \ { "local4", LOG_LOCAL4 }, { "local5", LOG_LOCAL5 }, \
{ "local6", LOG_LOCAL6 }, { "local7", LOG_LOCAL7 }, { NULL, -1 } }) { "local6", LOG_LOCAL6 }, { "local7", LOG_LOCAL7 }, { NULL, -1 } })
void vsyslog (int, const char *, va_list); #endif
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus