Commit f95808e8 authored by Ulf Möller's avatar Ulf Möller
Browse files

NO_SYSLOG is defined for MSDOS anyway. just don't include the Unix

header...
parent b70dcdfc
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -68,14 +68,12 @@

#if defined(WIN32)
#  include <process.h>
#elif defined (MSDOS)
#  define NO_SYSLOG
#elif defined(VMS) || defined(__VMS)
#  include <opcdef.h>
#  include <descrip.h>
#elif defined(__ultrix)
#  include <sys/syslog.h>
#else
#elif !defined(MSDOS) /* Unix */
#  include <syslog.h>
#endif