diff options
author | Glenn L McGrath | 2002-11-26 02:40:56 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-26 02:40:56 +0000 |
commit | d7fb1b372c7f494f623c687756a7fef945383814 (patch) | |
tree | ea9ec84f4401e697e2644f8378124e2778a7d7d6 /libbb/xgethostbyname2.c | |
parent | 2801eb925d957361c78dbdcf539cf7c33f0741a9 (diff) | |
download | busybox-d7fb1b372c7f494f623c687756a7fef945383814.zip busybox-d7fb1b372c7f494f623c687756a7fef945383814.tar.gz |
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 c66acfe..f4cbb6a 100644 --- a/libbb/xgethostbyname2.c +++ b/libbb/xgethostbyname2.c @@ -24,7 +24,7 @@ #include "libbb.h" -#if CONFIG_FEATURE_IPV6 +#ifdef CONFIG_FEATURE_IPV6 struct hostent *xgethostbyname2(const char *name, int af) { struct hostent *retval; |