* tests/test-system-quote-child.c (fopen): Redefine like the system's
<stdio.h> does.
+2016-10-16 Bruno Haible <bruno@clisp.org>
+
+ system-quote tests: Avoid compiler warning on AIX.
+ * tests/test-system-quote-child.c (fopen): Redefine like the system's
+ <stdio.h> does.
+
2016-10-16 Bruno Haible <bruno@clisp.org>
Fix some "gcc -Wall" warnings.
#undef fopen
#undef fprintf
#undef fread
+/* Restore the original fopen definition on AIX. */
+#if defined _AIX && defined _LARGE_FILES
+# define fopen fopen64
+#endif
#define EXPECTED_DATA_FILE "t-sq-data.tmp"