| commit 9b42a0b3a3cc037e6bdd62869d91cb19c80aa0e5 |
| Author: Siddhesh Poyarekar <siddhesh@redhat.com> |
| Date: Thu Nov 20 13:17:21 2014 +0530 |
| |
| Remove IS_IN_libdl |
| |
| Replace with IS_IN (libdl). No changes to generated code on x86_64. |
| |
| * dlfcn/dladdr.c: Use IS_IN. |
| * dlfcn/dladdr1.c: Likewise. |
| * dlfcn/dlclose.c: Likewise. |
| * dlfcn/dlerror.c: Likewise. |
| * dlfcn/dlinfo.c: Likewise. |
| * dlfcn/dlmopen.c: Likewise. |
| * dlfcn/dlopen.c: Likewise. |
| * dlfcn/dlsym.c: Likewise. |
| * dlfcn/dlvsym.c: Likewise. |
| |
| |
| |
| |
| |
| @@ -19,7 +19,7 @@ |
| |
| #include <dlfcn.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| int |
| dladdr (const void *address, Dl_info *info) |
| |
| |
| |
| |
| @@ -18,7 +18,7 @@ |
| |
| #include <dlfcn.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| int |
| dladdr1 (const void *address, Dl_info *info, void **extra, int flags) |
| |
| |
| |
| |
| @@ -20,7 +20,7 @@ |
| #include <dlfcn.h> |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| int |
| dlclose (void *handle) |
| |
| |
| |
| |
| @@ -25,7 +25,7 @@ |
| #include <bits/libc-lock.h> |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| char * |
| dlerror (void) |
| |
| |
| |
| |
| @@ -21,7 +21,7 @@ |
| #include <ldsodefs.h> |
| #include <libintl.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| int |
| dlinfo (void *handle, int request, void *arg) |
| |
| |
| |
| |
| @@ -23,7 +23,7 @@ |
| #include <unistd.h> |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| void * |
| dlmopen (Lmid_t nsid, const char *file, int mode) |
| |
| |
| |
| |
| @@ -22,7 +22,7 @@ |
| #include <unistd.h> |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| void * |
| dlopen (const char *file, int mode) |
| |
| |
| |
| |
| @@ -21,7 +21,7 @@ |
| |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| void * |
| dlsym (void *handle, const char *name) |
| |
| |
| |
| |
| @@ -21,7 +21,7 @@ |
| |
| #include <ldsodefs.h> |
| |
| -#if !defined SHARED && defined IS_IN_libdl |
| +#if !defined SHARED && IS_IN (libdl) |
| |
| void * |
| weak_function |