Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Riedy <ejr@cs.berkeley.edu>2005-08-24 00:34:44 +0400
committerJason Riedy <ejr@cs.berkeley.edu>2005-08-24 07:41:12 +0400
commit3cd6ecda4a02e943934885910feeba957b730123 (patch)
tree05fd79e7aea4a4a9adf97bdbfae6271d117a3389 /daemon.c
parentc7c81b3a51de2778535c8bb18d42a4bb7dfd57bc (diff)
Include sys/time.h in daemon.c.
Some systems and feature levels want sys/time.h for fd_set functionality. Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Diffstat (limited to 'daemon.c')
-rw-r--r--daemon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/daemon.c b/daemon.c
index 932d908bad..fb3f25c486 100644
--- a/daemon.c
+++ b/daemon.c
@@ -3,6 +3,7 @@
#include <signal.h>
#include <sys/wait.h>
#include <sys/socket.h>
+#include <sys/time.h>
#include <netdb.h>
#include <netinet/in.h>