From: Richard Lloyd Date: Sun, 20 Jun 2010 11:31:40 +0000 (+0200) Subject: stdio.in.h: fix compilation failure when using HP-UX 11's C compiler X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86ba51d2c17219b82b977da0a912e05a3d9bf858;p=pspp 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. --- diff --git a/ChangeLog b/ChangeLog index 8fe5099b73..27099b8f50 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-06-20 Richard Lloyd + + 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 ipv6: fix detection under mingw diff --git a/lib/stdio.in.h b/lib/stdio.in.h index ca8960ea56..135b08485b 100644 --- a/lib/stdio.in.h +++ b/lib/stdio.in.h @@ -661,7 +661,7 @@ _GL_FUNCDECL_RPL (printf, int, (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