]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixed <time.h> vs. <sys/time.h> problems.
authorMartin Mares <mj@ucw.cz>
Tue, 6 Mar 2001 13:40:39 +0000 (13:40 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 6 Mar 2001 13:40:39 +0000 (13:40 +0000)
client/client.c
sysdep/unix/io.c
sysdep/unix/log.c
sysdep/unix/timer.h

index c579352bea2133605a3c06889c60c583d2614184..f3b5d697e22cdd0900d37dc637226cabd60a0e45 100644 (file)
@@ -13,7 +13,6 @@
 #include <errno.h>
 #include <sys/socket.h>
 #include <sys/un.h>
-#include <sys/time.h>
 #include <sys/types.h>
 #include <readline/readline.h>
 #include <readline/history.h>
index 7f37c08c246655a5a57f32ddf7cd61b7eba22ad3..cec1c20ab685742139d369d7544a018aea45b398 100644 (file)
@@ -8,6 +8,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <sys/socket.h>
index 15f6815ff76a678f09e4ed0838f065721de5f3fc..6b7c38ca300a2da40f906b09cbaa403b5938e868 100644 (file)
@@ -18,7 +18,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
-#include <sys/time.h>
+#include <time.h>
 
 #include "nest/bird.h"
 #include "nest/cli.h"
index b33622aa4edd26b0b2a62b4edf650ecca0347f17..5d22bb91d82f67cc8caa0526cd8a8d6265a33ab3 100644 (file)
@@ -9,7 +9,7 @@
 #ifndef _BIRD_TIMER_H_
 #define _BIRD_TIMER_H_
 
-#include <sys/time.h>
+#include <time.h>
 
 #include "lib/resource.h"