26 lines
675 B
Diff
26 lines
675 B
Diff
From 12c34c7ff8e4e00ba54bd0b90f2ca6905109cb5d Mon Sep 17 00:00:00 2001
|
|
From: Alejandro Soto <alejandro@34project.org>
|
|
Date: Wed, 26 Apr 2023 13:35:57 -0600
|
|
Subject: [PATCH 3/3] stdarg.h instead of varargs.h
|
|
|
|
---
|
|
protoize.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/gcc-2.7.2.3/protoize.c b/gcc-2.7.2.3/protoize.c
|
|
index 9728bf2..fb82ef0 100644
|
|
--- a/gcc-2.7.2.3/protoize.c
|
|
+++ b/gcc-2.7.2.3/protoize.c
|
|
@@ -57,7 +57,7 @@ Boston, MA 02111-1307, USA. */
|
|
#define _POSIX_SOURCE
|
|
#endif
|
|
|
|
-#include <varargs.h>
|
|
+#include <stdarg.h>
|
|
/* On some systems stdio.h includes stdarg.h;
|
|
we must bring in varargs.h first. */
|
|
#include <stdio.h>
|
|
--
|
|
2.38.4
|
|
|