fixes init script for non ipv6 enabled systems #472755
[packages/xinetd.git] / xinetd / msg.h
1 #ifndef MSG_H
2 #define MSG_H
3
4 #include <syslog.h>
5
6 const char *msg_init(void);
7 void msg_suspend(void);
8 void msg_resume(void);
9 void msg(int level,const char *func,const char *fmt,...)
10 #ifdef __GNUC__ 
11         __attribute__ ((format (printf, 3, 4)));
12 #else
13         ;
14 #endif
15 void parsemsg(int msg_level,const char *func,const char *fmt,...)
16 #ifdef __GNUC__ 
17         __attribute__ ((format (printf, 3, 4)));
18 #else
19         ;
20 #endif
21 #endif