Don't include <stdarg.h> because it might not be available in a given
authorChris Hanson <org/chris-hanson/cph>
Mon, 28 Jun 1993 02:28:34 +0000 (02:28 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 28 Jun 1993 02:28:34 +0000 (02:28 +0000)
implementation.  Don't declare voutf because it's not referred to and
it requires <stdarg.h>.

v7/src/microcode/outf.h

index 335df94b6868e519cbc6eaf69a9ed19536cdb40b..ec922fb9a0da05294e1151dac8054c6fafe5a05e 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: outf.h,v 1.2 1993/06/24 08:22:21 gjr Exp $
+$Id: outf.h,v 1.3 1993/06/28 02:28:34 cph Exp $
 
 Copyright (c) 1993 Massachusetts Institute of Technology
 
@@ -35,7 +35,6 @@ MIT in each case. */
 #ifndef SCM_OUTF_H
 #define SCM_OUTF_H
 
-#include <stdarg.h>
 #include <stdio.h>
 #include "ansidecl.h"
 
@@ -45,8 +44,6 @@ extern void EXFUN (outf, (outf_channel chan, CONST char *format  DOTS));
 extern void EXFUN (outf_console, (CONST char *format  DOTS));
 extern void EXFUN (outf_error, (CONST char *format  DOTS));
 extern void EXFUN (outf_fatal, (CONST char *format  DOTS));
-extern void EXFUN (voutf,
-                   (CONST outf_channel chan, CONST char *format, va_list ap));
 
 extern void EXFUN (outf_flush, (outf_channel chan));
 extern void EXFUN (outf_flush_console, (void));