wget: add TODO
[oweals/busybox.git] / networking / ip.c
index d44cc0d6005ebc5322c77f18a27ee82014a1d5e1..6363155978f39509cb7909fbd7999e8cb64d4261 100644 (file)
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * ip.c                "ip" utility frontend.
  *
  * 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;
@@ -56,5 +48,5 @@ int ip_main(int argc, char **argv)
        if (ret) {
                bb_show_usage();
        }
-       return(EXIT_SUCCESS);
+       return EXIT_SUCCESS;
 }