fsck_minix: stop using data/bss
[oweals/busybox.git] / util-linux / rdate.c
index ccbf969666773107a49d2899a154f91006cdb373..9166546ae50a10888848cffadc802c5387821506 100644 (file)
@@ -8,13 +8,7 @@
  * Licensed under GPL v2 or later, see file License for details.
 */
 
-//#include <sys/socket.h>
-//#include <netinet/in.h>
-//#include <netdb.h>
-//#include <signal.h>
-
-#include "busybox.h"
-
+#include "libbb.h"
 
 enum { RFC_868_BIAS = 2208988800UL };
 
@@ -48,6 +42,7 @@ static time_t askremotedate(const char *host)
        return ntohl(nett) - RFC_868_BIAS;
 }
 
+int rdate_main(int argc, char **argv);
 int rdate_main(int argc, char **argv)
 {
        time_t remote_time;