diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-22 22:28:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-22 22:28:33 +0000 |
commit | e013970b0b0b44bf871233cffcf5ca77ce700e2e (patch) | |
tree | b68d1de6fbc0eb3e5efa2286c3d9937fcfebb5b7 | |
parent | 09a6b8d9c89566eccdc27103c85750f99d6fea52 (diff) | |
download | rtmux-e013970b0b0b44bf871233cffcf5ca77ce700e2e.tar.gz rtmux-e013970b0b0b44bf871233cffcf5ca77ce700e2e.tar.bz2 rtmux-e013970b0b0b44bf871233cffcf5ca77ce700e2e.zip |
Missing time.h.
-rw-r--r-- | server-fn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server-fn.c b/server-fn.c index c6b45fb1..f766ba38 100644 --- a/server-fn.c +++ b/server-fn.c @@ -1,4 +1,4 @@ -/* $Id: server-fn.c,v 1.48 2008-06-20 06:36:01 nicm Exp $ */ +/* $Id: server-fn.c,v 1.49 2008-06-22 22:28:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -19,6 +19,7 @@ #include <sys/types.h> #include <string.h> +#include <time.h> #include <unistd.h> #include "tmux.h" |