diff options
Diffstat (limited to 'netcfg/netcfg.c')
-rw-r--r-- | netcfg/netcfg.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/netcfg/netcfg.c b/netcfg/netcfg.c index 3738f24..2308f37 100644 --- a/netcfg/netcfg.c +++ b/netcfg/netcfg.c @@ -1,5 +1,4 @@ -/* system/bin/netcfg/netcfg.c -** +/* ** Copyright 2006, The Android Open Source Project ** ** Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,18 +14,14 @@ ** limitations under the License. */ -#include <stdio.h> -#include <stdlib.h> #include <errno.h> #include <dirent.h> #include <netinet/ether.h> #include <netinet/if_ether.h> - -#include <netutils/ifc.h> #include <netutils/dhcp.h> - -static int verbose = 0; - +#include <netutils/ifc.h> +#include <stdio.h> +#include <stdlib.h> void die(const char *reason) { |