diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-26 02:40:56 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-26 02:40:56 +0000 |
commit | d7fb1b372c7f494f623c687756a7fef945383814 (patch) | |
tree | ea9ec84f4401e697e2644f8378124e2778a7d7d6 /libbb/xgethostbyname2.c | |
parent | 2801eb925d957361c78dbdcf539cf7c33f0741a9 (diff) | |
download | busybox-w32-d7fb1b372c7f494f623c687756a7fef945383814.tar.gz busybox-w32-d7fb1b372c7f494f623c687756a7fef945383814.tar.bz2 busybox-w32-d7fb1b372c7f494f623c687756a7fef945383814.zip |
Use #ifdef instead of #if
Diffstat (limited to 'libbb/xgethostbyname2.c')
-rw-r--r-- | libbb/xgethostbyname2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xgethostbyname2.c b/libbb/xgethostbyname2.c index c66acfee1..f4cbb6a56 100644 --- a/libbb/xgethostbyname2.c +++ b/libbb/xgethostbyname2.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include "libbb.h" | 24 | #include "libbb.h" |
25 | 25 | ||
26 | 26 | ||
27 | #if CONFIG_FEATURE_IPV6 | 27 | #ifdef CONFIG_FEATURE_IPV6 |
28 | struct hostent *xgethostbyname2(const char *name, int af) | 28 | struct hostent *xgethostbyname2(const char *name, int af) |
29 | { | 29 | { |
30 | struct hostent *retval; | 30 | struct hostent *retval; |