summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/et/ChangeLog6
-rw-r--r--src/util/et/com_err.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog
index 6a514a2fa..bf6bfa038 100644
--- a/src/util/et/ChangeLog
+++ b/src/util/et/ChangeLog
@@ -1,3 +1,9 @@
+Wed Mar 22 11:34:09 1995 Keith Vetter (keithv@fusion.com)
+
+ * com_err.c: added _WINDOWS equivalent condition to HAVE_STDARG_H
+ since windows fakes autoconf by defining such constants in
+ k5-config.h which isn't included for this file.
+
Thu Mar 16 19:57:20 1995 Keith Vetter (keithv@fusion.com)
* com_err.c: added missing INTERFACE on a prototype.
diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c
index b4487ab4f..4ed2472a6 100644
--- a/src/util/et/com_err.c
+++ b/src/util/et/com_err.c
@@ -8,7 +8,7 @@
#include <string.h>
#include "mit-sipb-copyright.h"
-#ifdef HAVE_STDARG_H
+#if defined(HAVE_STDARG_H) || defined(_WINDOWS)
#include <stdarg.h>
#else
#include <varargs.h>