small ipv6 doc changes; nslookup a tiny bit smaller
[oweals/busybox.git] / networking / ip.c
index fe5714f166bbaba3c84a74244c7049315f448954..6363155978f39509cb7909fbd7999e8cb64d4261 100644 (file)
  * Rani Assaf <rani@magic.metawire.com> 980929:        resolve addresses
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <syslog.h>
-#include <fcntl.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <string.h>
+#include "busybox.h"
 
 #include "libiproute/utils.h"
 #include "libiproute/ip_common.h"
 
-#include "busybox.h"
-
 int ip_main(int argc, char **argv)
 {
        int ret = EXIT_FAILURE;
@@ -57,5 +48,5 @@ int ip_main(int argc, char **argv)
        if (ret) {
                bb_show_usage();
        }
-       return(EXIT_SUCCESS);
+       return EXIT_SUCCESS;
 }