diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-20 12:21:01 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-24 11:41:43 +0530 |
commit | 2886d2d14dd7de6339b04505c5d2f9fc5c844751 (patch) | |
tree | 6c41febba9685c8fda144c69db43facca6587bba /nss | |
parent | 9a4848572bec992781311995e9e5e46eb226ce97 (diff) | |
download | glibc-2886d2d14dd7de6339b04505c5d2f9fc5c844751.tar glibc-2886d2d14dd7de6339b04505c5d2f9fc5c844751.tar.gz glibc-2886d2d14dd7de6339b04505c5d2f9fc5c844751.tar.bz2 glibc-2886d2d14dd7de6339b04505c5d2f9fc5c844751.zip |
Remove IS_IN_libc
Replace it with IS_IN (libc) and remove the one place that it
is defined in. The generated code remains unchanged on x86_64.
* include/shlib-compat.h [!NOT_IN_libc]: Remove.
* nss/nss_files/files-parse.c (IS_IN_libc): Replace with
IS_IN (libc).
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nss_files/files-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c index 1da1a6f352..42fd1f3757 100644 --- a/nss/nss_files/files-parse.c +++ b/nss/nss_files/files-parse.c @@ -73,7 +73,7 @@ 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) -# ifdef IS_IN_libc +# if 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) |