diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-08-22 03:14:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-08-22 03:14:29 +0000 |
commit | 1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d (patch) | |
tree | b94b2b37659fd22373f3f20e2ca964a46d54759c /nscd/res_hconf.c | |
parent | a30d41c1d2c69b34e6f19dc1f92881f18e75349c (diff) | |
download | glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.zip glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.tar.gz glibc-1ce7d80ddc62d4bb3e8e4f89fbcb6fa21361733d.tar.bz2 |
[BZ #4814]
* resolv/res_hconf.c: Prepare for compiling outside libc.
* nscd/res_hconf.c: New file.
* nscd/Makefile (nscd-modules): Add res_hconf. Add rules to build
the new file.
* nscd/gethstbynm2_r.c (NEED__RES_HCONF): Define.
* nscd/gethstbyad_r.c (NEED__RES_HCONF): Likewise.
Diffstat (limited to 'nscd/res_hconf.c')
-rw-r--r-- | nscd/res_hconf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nscd/res_hconf.c b/nscd/res_hconf.c new file mode 100644 index 0000000..14b0e30 --- /dev/null +++ b/nscd/res_hconf.c @@ -0,0 +1,13 @@ +/* Add the include here so that we can redefine __fxprintf. */ +#include <stdio.h> + +/* Rename symbols for protected names used in libc itself. */ +#define __ioctl ioctl +#define __socket socket +#define __strchrnul strchrnul +#define __strncasecmp strncasecmp + +#define __fxprintf(args...) /* ignore */ + + +#include "../resolv/res_hconf.c" |