diff options
author | Glenn L McGrath | 2002-11-26 03:03:41 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-26 03:03:41 +0000 |
commit | efc6fbd452211fb1695f7f0abbf8c7477c54f7fa (patch) | |
tree | e10fd64bfef70572555e4657e3313af2fde0cff3 | |
parent | a2e24825a26289b0be3b6ebd35b29bde83b73b9f (diff) | |
download | busybox-efc6fbd452211fb1695f7f0abbf8c7477c54f7fa.zip busybox-efc6fbd452211fb1695f7f0abbf8c7477c54f7fa.tar.gz |
use #ifdef instead of #if
-rw-r--r-- | networking/ping6.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/ping6.c b/networking/ping6.c index bff700c..8e14647 100644 --- a/networking/ping6.c +++ b/networking/ping6.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: ping6.c,v 1.1 2002/07/03 11:46:34 andersen Exp $ + * $Id: ping6.c,v 1.2 2002/11/26 03:03:41 bug1 Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -161,9 +161,9 @@ static int myid, options; static unsigned long tmin = ULONG_MAX, tmax, tsum; static char rcvd_tbl[MAX_DUP_CHK / 8]; -#if CONFIG_FEATURE_FANCY_PING +# ifdef CONFIG_FEATURE_FANCY_PING extern -#endif +# endif struct hostent *hostent; static void sendping(int); |