diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-14 06:59:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-14 06:59:06 +0000 |
commit | 4a9b01eb0d328f13a03f967759bfd76d749da17f (patch) | |
tree | fdd9911519a2cda446efcede7ec82894dd6f775e | |
parent | 6910458a92a12c3d073ea4f5839060ee0914cc17 (diff) | |
download | rtmux-4a9b01eb0d328f13a03f967759bfd76d749da17f.tar.gz rtmux-4a9b01eb0d328f13a03f967759bfd76d749da17f.tar.bz2 rtmux-4a9b01eb0d328f13a03f967759bfd76d749da17f.zip |
Need time.h not sys/time.h for time(2).
-rw-r--r-- | server-fn.c | 2 |
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" |