]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
hacks
authorHarlan Stenn <stenn@ntp.org>
Thu, 24 Jul 2008 07:01:29 +0000 (03:01 -0400)
committerHarlan Stenn <stenn@ntp.org>
Thu, 24 Jul 2008 07:01:29 +0000 (03:01 -0400)
bk: 488828c9nRO_RrdqcrD5MhQzRa_dXw

gsoc_sntp/data_formats.h
gsoc_sntp/networking.c
gsoc_sntp/networking.h

index 022ce3eb5251459670b27a70cc1f7496929bbdf5..7da3bf77da338e23902304ed5396d9e398046c1c 100644 (file)
@@ -1,10 +1,7 @@
 #ifndef DATA_FORMATS_H
 #define DATA_FORMATS_H
 
-#include <sys/types.h>
 #include <ntp.h>
-#include <ntp_types.h>
 #include <ntp_fp.h>
 
-
 #endif
index 3fa7ed920c89167f414479400a9a70631de6e185..45d6bcd80f24d03cea86965b35e84a76dbbd7818 100644 (file)
@@ -1,4 +1,4 @@
-#include "ntp_fp.h"
+#include <ntp_fp.h>
 
 #include "sntp-opts.h"
 #include "networking.h"
index 9dab79c56b33fb8367cfc6271c13e3a416d743e0..d89ec9ed1180d92f0e7daae40869e8070b152d63 100644 (file)
@@ -1,14 +1,14 @@
 #ifndef NETWORK_H
 #define NETWORK_H
 
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <stdlib.h>
-#include <strings.h>
-#include <string.h>
-#include <errno.h>
+#include <sys/types.h> /**/
+/* #include <sys/socket.h>     /**/
+/* #include <netinet/in.h>     /**/
+/* #include <netdb.h>  /**/
+#include <stdlib.h>    /**/
+#include <strings.h>   /**/
+#include <string.h>    /**/
+#include <errno.h>     /**/
 
 #include "data_formats.h"