summaryrefslogtreecommitdiffstats
path: root/src/include/sys/syslog.h
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1996-06-12 04:49:06 +0000
committerTheodore Tso <tytso@mit.edu>1996-06-12 04:49:06 +0000
commita9dcdd45b3ee4b500ad66bfbf73ca5f826d1fdb3 (patch)
treece282735d04fee7e60a889bfa5de25ed8a93c31f /src/include/sys/syslog.h
parent55c3fa33901c4a545825a37b38bca1334bb9e610 (diff)
downloadkrb5-a9dcdd45b3ee4b500ad66bfbf73ca5f826d1fdb3.tar.gz
krb5-a9dcdd45b3ee4b500ad66bfbf73ca5f826d1fdb3.tar.xz
krb5-a9dcdd45b3ee4b500ad66bfbf73ca5f826d1fdb3.zip
Add #ifdef _WIN32 in places where we had #ifdef _MSDOS
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8308 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/sys/syslog.h')
-rw-r--r--src/include/sys/syslog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/sys/syslog.h b/src/include/sys/syslog.h
index 2aa3233d0..6adae5a49 100644
--- a/src/include/sys/syslog.h
+++ b/src/include/sys/syslog.h
@@ -90,7 +90,7 @@
#define LOG_NOWAIT 0x10 /* if forking to log on console, don't wait() */
#ifndef KERNEL
-#if (defined(__STDC__) || defined(_WINDOWS)) && !defined(KRB5_NO_PROTOTYPES)
+#if (defined(__STDC__) || defined(_MSDOS) || defined(_WIN32)) && !defined(KRB5_NO_PROTOTYPES)
extern void syslog (int , const char *, ... );
#ifdef va_start
/* XXX depending on #define of va_start in <stdarg.h> */