# HG changeset patch # User Paul Eggert # Date 1360442507 28800 # Node ID 0fb629c87fb59fc68da3ca2dfb149fe39502d08d # Parent b1b7de2c4a71e69dfe13e4ff8fa0d36591070e18 secure_getenv: fix C++ declaration typo * lib/stdlib.in.h (secure_getenv): Fix typo with return type in _GL_CXXALIAS_SYS macro. Reported by John W. Eaton in . diff -r b1b7de2c4a71 -r 0fb629c87fb5 ChangeLog --- a/ChangeLog Fri Feb 08 15:12:36 2013 -0800 +++ b/ChangeLog Sat Feb 09 12:41:47 2013 -0800 @@ -1,3 +1,10 @@ +2013-02-09 Paul Eggert + + secure_getenv: fix C++ declaration typo + * lib/stdlib.in.h (secure_getenv): Fix typo with return type + in _GL_CXXALIAS_SYS macro. Reported by John W. Eaton in + . + 2013-02-08 Paul Eggert careadlinkat: stop exporting careadlinkatcwd diff -r b1b7de2c4a71 -r 0fb629c87fb5 lib/stdlib.in.h --- a/lib/stdlib.in.h Fri Feb 08 15:12:36 2013 -0800 +++ b/lib/stdlib.in.h Sat Feb 09 12:41:47 2013 -0800 @@ -773,7 +773,7 @@ _GL_FUNCDECL_SYS (secure_getenv, char *, (char const *name) _GL_ARG_NONNULL ((1))); # endif -_GL_CXXALIAS_SYS (secure_getenv, int, (char const *name)); +_GL_CXXALIAS_SYS (secure_getenv, char *, (char const *name)); _GL_CXXALIASWARN (secure_getenv); #elif defined GNULIB_POSIXCHECK # undef secure_getenv