# HG changeset patch # User Bruno Haible # Date 1342985502 -7200 # Node ID 13795cd8c0ba0dc078fcf96d7731e57aa5cd0cee # Parent 0103491fe167b25ce3d67d5894f3ec633ec3e2e4 getpass: Assume AC_CHECK_DECLS_ONCE invocation, like in getpass.m4. * lib/getpass.h: Assume HAVE_DECL_GETPASS is defined. * cfg.mk (exclude_file_name_regexp--sc_prohibit_defined_have_decl_tests): Remove exemption for getpass.h. Suggested by Eric Blake. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2012-07-22 Bruno Haible + + getpass: Assume AC_CHECK_DECLS_ONCE invocation, like in getpass.m4. + * lib/getpass.h: Assume HAVE_DECL_GETPASS is defined. + * cfg.mk (exclude_file_name_regexp--sc_prohibit_defined_have_decl_tests): + Remove exemption for getpass.h. + Suggested by Eric Blake. + 2012-07-20 Eric Blake verify: document conflict with -Wnested-externs diff --git a/cfg.mk b/cfg.mk --- a/cfg.mk +++ b/cfg.mk @@ -79,4 +79,4 @@ ^lib/($(if_before_free_basename_re_))\.c$$ exclude_file_name_regexp--sc_prohibit_defined_have_decl_tests = \ - ^lib/((error|getopt|strtoimax)\.c|(argp-namefrob|getpass)\.h)$$ + ^lib/((error|getopt|strtoimax)\.c|(argp-namefrob)\.h)$$ diff --git a/lib/getpass.h b/lib/getpass.h --- a/lib/getpass.h +++ b/lib/getpass.h @@ -21,7 +21,7 @@ /* Get getpass declaration, if available. */ # include -# if defined HAVE_DECL_GETPASS && !HAVE_DECL_GETPASS +# if !HAVE_DECL_GETPASS /* Read a password of arbitrary length from /dev/tty or stdin. */ char *getpass (const char *prompt);