Try to make indent formatting less horrible
[oweals/busybox.git] / util-linux / rdate.c
index cb180247e026115fbffae4a2075fde73476adc27..8d156cc783835643a10ec5781d96207051cff0d0 100644 (file)
 #include <stdlib.h>
 #include <unistd.h>
 #include <signal.h>
+
 #include "busybox.h"
 
 
 static const int RFC_868_BIAS = 2208988800UL;
 
-static void socket_timeout()
+static void socket_timeout(int sig)
 {
-       bb_error_msg_and_die("timeout connecting to time server\n");
+       bb_error_msg_and_die("timeout connecting to time server");
 }
 
 static time_t askremotedate(const char *host)