support _BSD_SOURCE feature test macro
patch by Isaac Dunham. matched closely (maybe not exact) to glibc's idea of what _BSD_SOURCE should make visible.
This commit is contained in:
parent
7b5467cbae
commit
419ae6d5c9
22 changed files with 126 additions and 41 deletions
|
|
@ -59,7 +59,8 @@ void openlog (const char *, int, int);
|
|||
int setlogmask (int);
|
||||
void syslog (int, const char *, ...);
|
||||
|
||||
#if defined(_GNU_SOURCE)
|
||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
||||
#define _PATH_LOG "/dev/log"
|
||||
#define __NEED_va_list
|
||||
#include <bits/alltypes.h>
|
||||
void vsyslog (int, const char *, va_list);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue