9 lines
174 B
C
9 lines
174 B
C
#ifndef _LOGGING_H_
|
|
#define _LOGGING_H_
|
|
|
|
#include <syslog.h>
|
|
|
|
void logmsg(int prio, const char* format, ...);
|
|
void setfacility(const char *facility_p);
|
|
#endif // _LOGGING_H_
|