lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | /* Add the include here so that we can redefine __fxprintf. */ |
2 | #include <stdio.h> | ||||
3 | |||||
4 | /* Rename symbols for protected names used in libc itself. */ | ||||
5 | #define __ioctl ioctl | ||||
6 | #define __socket socket | ||||
7 | #define __strchrnul strchrnul | ||||
8 | #define __strncasecmp strncasecmp | ||||
9 | |||||
10 | #define __fxprintf(args...) /* ignore */ | ||||
11 | |||||
12 | |||||
13 | #include "../resolv/res_hconf.c" |