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 /session.c | |
parent | 97e8b94ef82e44de12bac81c2716697378b918b3 (diff) | |
download | rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.gz rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.bz2 rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.zip |
Missing time.h.
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |