* lib/strings.in.h: On AIX in C++ mode, before including the system's
<strings.h> file, include <string.h>.
+2026-05-09 Bruno Haible <bruno@clisp.org>
+
+ strings-h: Fix compilation error on AIX in C++ mode.
+ * lib/strings.in.h: On AIX in C++ mode, before including the system's
+ <strings.h> file, include <string.h>.
+
2026-05-09 Bruno Haible <bruno@clisp.org>
Fix 'restrict' on MSVC and on Solaris 11.4 g++ (regression 2026-05-04).
/* The include_next requires a split double-inclusion guard. */
#if @HAVE_STRINGS_H@
+/* AIX 7.3 has a bug: In C++ mode, <string.h> must be included before
+ <strings.h>. */
+# if defined __cplusplus && defined _AIX
+# include <string.h>
+# endif
# @INCLUDE_NEXT@ @NEXT_STRINGS_H@
#endif