From: Guillermo J. Rozas Date: Sun, 18 Jul 1993 20:26:48 +0000 (+0000) Subject: The WINNT compilers do not pre-define __STDC__. X-Git-Tag: 20090517-FFI~8192 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=210706b91b4be6d3d20a15ae17a819d229f57440;p=mit-scheme.git The WINNT compilers do not pre-define __STDC__. --- diff --git a/v7/src/microcode/outf.c b/v7/src/microcode/outf.c index 89cd40fdd..6879e9b50 100644 --- a/v7/src/microcode/outf.c +++ b/v7/src/microcode/outf.c @@ -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. */ - + /* 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 #define VA_START(args, lastarg) va_start(args, lastarg) #define VA_DCL