From: Chris Hanson Date: Mon, 28 Jun 1993 02:28:34 +0000 (+0000) Subject: Don't include because it might not be available in a given X-Git-Tag: 20090517-FFI~8266 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=97aca8d6c26c41b33651e72cbf0b4c1b05a265a1;p=mit-scheme.git Don't include because it might not be available in a given implementation. Don't declare voutf because it's not referred to and it requires . --- diff --git a/v7/src/microcode/outf.h b/v7/src/microcode/outf.h index 335df94b6..ec922fb9a 100644 --- a/v7/src/microcode/outf.h +++ b/v7/src/microcode/outf.h @@ -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 #include #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));