mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
24 lines
544 B
Diff
24 lines
544 B
Diff
--- a/advance/d2/d2.cc
|
|
+++ b/advance/d2/d2.cc
|
|
@@ -21,6 +21,9 @@
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
+#if defined(__PPC64__)
|
|
+#define __STRICT_ANSI__
|
|
+#endif
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
|
|
--- a/advance/lib/portable.h
|
|
+++ b/advance/lib/portable.h
|
|
@@ -67,6 +67,9 @@
|
|
|
|
/* Include some standard headers */
|
|
#include <stdio.h>
|
|
+#if defined(__PPC64__)
|
|
+#define __STRICT_ANSI__
|
|
+#endif
|
|
#include <stdlib.h> /* On many systems (e.g., Darwin), `stdio.h' is a prerequisite. */
|
|
#include <stdarg.h>
|
|
#include <string.h>
|