diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 22:17:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 22:17:29 +0000 |
commit | 63795f6c04c8b9635ccf60902d35631f3dc02007 (patch) | |
tree | 9e1a6c0ce61f79545be4619992141c8f6a496d17 | |
parent | 97e8b94ef82e44de12bac81c2716697378b918b3 (diff) | |
download | rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.gz rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.bz2 rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.zip |
Missing time.h.
-rw-r--r-- | log.c | 3 | ||||
-rw-r--r-- | session.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: log.c,v 1.3 2007-09-26 18:55:42 nicm Exp $ */ +/* $Id: log.c,v 1.4 2007-10-19 22:17:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string.h> #include <syslog.h> +#include <time.h> #include "tmux.h" @@ -1,4 +1,4 @@ -/* $Id: session.c,v 1.22 2007-10-12 11:24:15 nicm Exp $ */ +/* $Id: session.c,v 1.23 2007-10-19 22:16:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -20,6 +20,7 @@ #include <string.h> #include <stdlib.h> +#include <time.h> #include <unistd.h> #include "tmux.h" |