From 4a9b01eb0d328f13a03f967759bfd76d749da17f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott <nicm@openbsd.org> Date: Tue, 14 Jul 2009 06:59:06 +0000 Subject: [PATCH] Need time.h not sys/time.h for time(2). --- server-fn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"