Xenomai API  2.6.3
syslog.h
1 #ifndef SYSLOG_H
2 #define SYSLOG_H
3 
4 #pragma GCC system_header
5 
6 #include <stdarg.h>
7 #include_next <syslog.h>
8 #include <xeno_config.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif /* __cplusplus */
13 
14 void __real_syslog(int priority, const char *fmt, ...);
15 
16 void __real_vsyslog(int priority, const char *fmt, va_list ap);
17 
18 #ifdef CONFIG_XENO_FORTIFY
19 void __real___vsyslog_chk(int priority, int level, const char *fmt, va_list ap);
20 #endif
21 
22 #ifdef __cplusplus
23 }
24 #endif /* __cplusplus */
25 
26 #endif /* SYSLOG_H */