Include stdio.h to get STDIO_PROTO correct.
authorMichael Meissner <meissner@gcc.gnu.org>
Sun, 13 Feb 1994 18:40:02 +0000 (18:40 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Sun, 13 Feb 1994 18:40:02 +0000 (18:40 +0000)
From-SVN: r6546

gcc/halfpic.h

index 7e274d33d5be14dac408f01356ba4cf368fab6c7..32b0108ae8f8a45d577974835b6e330157eaef9c 100644 (file)
@@ -29,11 +29,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #endif
 
 #ifndef STDIO_PROTO
-#ifdef BUFSIZ
-#define STDIO_PROTO(ARGS) PROTO(ARGS)
-#else
-#define STDIO_PROTO(ARGS) ()
+#ifndef BUFSIZ
+#include <stdio.h>
 #endif
+
+#define STDIO_PROTO(ARGS) PROTO(ARGS)
 #endif
 
 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)