Include <syslog.h> instead of <sys/syslog.h>

Using the standard <syslog.h> header instead of <sys/syslog.h> makes it
consistent with other source files and fixes compilation on Android.

Signed-off-by: Fredrik Fornwall <fredrik@fornwall.net>
pull/413/head
Fredrik Fornwall 9 years ago committed by Roger A. Light
parent 532273250c
commit 23b0891048

@ -36,7 +36,7 @@ Contributors:
#endif
#if !defined(WIN32) && !defined(__CYGWIN__)
# include <sys/syslog.h>
# include <syslog.h>
#endif
#include <mosquitto_broker.h>

Loading…
Cancel
Save