moonbridge
diff moonbridge.c @ 135:795bc86be569
Cleanup regarding #include directives
| author | jbe |
|---|---|
| date | Thu Apr 16 22:06:55 2015 +0200 (2015-04-16) |
| parents | 11269ec33cd7 |
| children | ae23bcae95d1 |
line diff
1.1 --- a/moonbridge.c Thu Apr 16 21:12:29 2015 +0200 1.2 +++ b/moonbridge.c Thu Apr 16 22:06:55 2015 +0200 1.3 @@ -21,25 +21,25 @@ 1.4 #define _GNU_SOURCE 1.5 #endif 1.6 #include <stdlib.h> 1.7 -#include <unistd.h> 1.8 #include <stdint.h> 1.9 +#include <string.h> 1.10 +//#include <stdio.h> 1.11 #include <errno.h> 1.12 -#include <getopt.h> 1.13 -#include <syslog.h> 1.14 -#include <string.h> 1.15 -#include <stdio.h> 1.16 -#include <time.h> 1.17 +#include <unistd.h> 1.18 +#include <signal.h> 1.19 +#include <sys/wait.h> 1.20 +#include <sys/resource.h> 1.21 +#include <poll.h> 1.22 +//#include <time.h> 1.23 #include <sys/time.h> 1.24 #include <sys/socket.h> 1.25 #include <sys/un.h> 1.26 #include <netinet/in.h> 1.27 #include <netdb.h> 1.28 #include <arpa/inet.h> 1.29 -#include <poll.h> 1.30 -#include <signal.h> 1.31 -#include <sys/wait.h> 1.32 -#include <sys/resource.h> 1.33 +#include <getopt.h> 1.34 #include <sys/file.h> 1.35 +#include <syslog.h> 1.36 #if defined(__FreeBSD__) || __has_include(<libutil.h>) 1.37 #include <libutil.h> 1.38 #endif