Merge pull request #10 from kraj/master
Fix build on non-glibc linux systems
This commit is contained in:
commit
a3f3ed1833
@ -34,6 +34,7 @@
|
|||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following macro is used to remove const cast-away warnings
|
* The following macro is used to remove const cast-away warnings
|
||||||
|
@ -221,7 +221,9 @@ struct syslog_data {
|
|||||||
.log_mask = 0xff, \
|
.log_mask = 0xff, \
|
||||||
}
|
}
|
||||||
|
|
||||||
__BEGIN_DECLS
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
void openlog (const char *, int, int);
|
void openlog (const char *, int, int);
|
||||||
void closelog (void);
|
void closelog (void);
|
||||||
|
|
||||||
@ -245,7 +247,9 @@ void syslogp_r (int, struct syslog_data *, const char *, const char *,
|
|||||||
const char *, ...);
|
const char *, ...);
|
||||||
void vsyslogp_r (int, struct syslog_data *, const char *, const char *,
|
void vsyslogp_r (int, struct syslog_data *, const char *, const char *,
|
||||||
const char *, va_list);
|
const char *, va_list);
|
||||||
__END_DECLS
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#else /* !__KERNEL__ */
|
#else /* !__KERNEL__ */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user