1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

either libc_hidden_def or libnss_files_hidden_def, not hidden_def.

This file is also compiled into libnss_hesiod by #include.
This commit is contained in:
Roland McGrath
2004-10-26 02:30:36 +00:00
parent 8f8bd267e9
commit 4463a2eed7
2 changed files with 9 additions and 3 deletions

View File

@@ -73,7 +73,13 @@ struct parser_data
/* Export the line parser function so it can be used in nss_db. */
# define parser_stclass /* Global */
# define parse_line CONCAT(_nss_files_parse_,ENTNAME)
# define nss_files_parse_hidden_def(name) libnss_files_hidden_def (name)
# ifdef IS_IN_libc
/* We are defining one of the functions that actually lives in libc
because it is used to implement fget*ent and suchlike. */
# define nss_files_parse_hidden_def(name) libc_hidden_def (name)
# else
# define nss_files_parse_hidden_def(name) libnss_files_hidden_def (name)
# endif
#endif