changeset 13432:7c47558d5b02

stdio.in.h: fix compilation failure when using HP-UX 11's C compiler * lib/stdio.in.h: Remove excess _GL_CXXALIAS_RPL macro argument. This macro takes 3 arguments, not 4.
author Richard Lloyd <richard.lloyd@connectinternetsolutions.com>
date Sun, 20 Jun 2010 13:31:40 +0200
parents bc8cf2161828
children 7f9b23c2c458
files ChangeLog lib/stdio.in.h
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-06-20  Richard Lloyd  <richard.lloyd@connectinternetsolutions.com>
+
+	stdio.in.h: fix compilation failure when using HP-UX 11's C compiler
+	* lib/stdio.in.h: Remove excess _GL_CXXALIAS_RPL macro argument.
+	This macro takes 3 arguments, not 4.
+
 2010-06-15  Giuseppe Scrivano  <gscrivano@gnu.org>
 
 	ipv6: fix detection under mingw
--- a/lib/stdio.in.h
+++ b/lib/stdio.in.h
@@ -661,7 +661,7 @@
                   (const char *format, ...)
                   __attribute__ ((__format__ (__printf__, 1, 2)))
                   _GL_ARG_NONNULL ((1)));
-_GL_CXXALIAS_RPL (printf, printf, int, (const char *format, ...));
+_GL_CXXALIAS_RPL (printf, int, (const char *format, ...));
 #  endif
 #  define GNULIB_overrides_printf 1
 # else