summaryrefslogtreecommitdiff
path: root/daemon.c
diff options
context:
space:
mode:
authorJason Riedy <ejr@cs.berkeley.edu>2005-08-23 20:34:44 (GMT)
committerJason Riedy <ejr@cs.berkeley.edu>2005-08-24 03:41:12 (GMT)
commit3cd6ecda4a02e943934885910feeba957b730123 (patch)
tree05fd79e7aea4a4a9adf97bdbfae6271d117a3389 /daemon.c
parentc7c81b3a51de2778535c8bb18d42a4bb7dfd57bc (diff)
downloadgit-3cd6ecda4a02e943934885910feeba957b730123.zip
git-3cd6ecda4a02e943934885910feeba957b730123.tar.gz
git-3cd6ecda4a02e943934885910feeba957b730123.tar.bz2
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 932d908..fb3f25c 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>