1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/lang/tcc/files/patch-va__list.c
Bartek Rutkowski d69c2fb4f3 lang/tcc: fix stdio.h bug
PR:		202093
Submitted by:	Carlos J Puga Medina <cpm@fbsd.es> (maintainer)
MFH:		2015Q3
2015-08-05 13:18:22 +00:00

10 lines
187 B
C

--- va_list.c.orig 2015-08-04 22:06:53 UTC
+++ va_list.c
@@ -0,0 +1,6 @@
+#ifdef __FreeBSD__
+#undef __GNUC__
+#undef __GNUC_MINOR__
+#include <sys/types.h>
+void foo(__va_list);
+#endif