The WINNT compilers do not pre-define __STDC__.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 18 Jul 1993 20:26:48 +0000 (20:26 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 18 Jul 1993 20:26:48 +0000 (20:26 +0000)
v7/src/microcode/outf.c

index 89cd40fdd5a14f1c7f3e8ed247709c00db1d3215..6879e9b503efcc4cafda05e3fd720d8502ef0186 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: outf.c,v 1.2 1993/06/28 02:29:10 cph Exp $
+$Id: outf.c,v 1.3 1993/07/18 20:26:48 gjr Exp $
 
 Copyright (c) 1993 Massachusetts Institute of Technology
 
@@ -31,7 +31,7 @@ there shall be no use of the name of the Massachusetts Institute of
 Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
-
+\f
 /*
   OUTF system
     
@@ -54,7 +54,7 @@ MIT in each case. */
   information to stay visible `after' the termination of Scheme.
 */
 
-#ifdef __STDC__
+#if defined(__STDC__) || defined(WINNT)
 #include <stdarg.h>
 #define VA_START(args, lastarg) va_start(args, lastarg)
 #define VA_DCL