summaryrefslogtreecommitdiffstats
path: root/server-fn.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-14 06:59:06 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-14 06:59:06 +0000
commit4a9b01eb0d328f13a03f967759bfd76d749da17f (patch)
treefdd9911519a2cda446efcede7ec82894dd6f775e /server-fn.c
parent6910458a92a12c3d073ea4f5839060ee0914cc17 (diff)
Need time.h not sys/time.h for time(2).
Diffstat (limited to 'server-fn.c')
-rw-r--r--server-fn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server-fn.c b/server-fn.c
index 2d6709f5..b5cc00f5 100644
--- a/server-fn.c
+++ b/server-fn.c
@@ -17,9 +17,9 @@
*/
#include <sys/types.h>
-#include <sys/time.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
#include "tmux.h"