aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 22:17:29 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 22:17:29 +0000
commit63795f6c04c8b9635ccf60902d35631f3dc02007 (patch)
tree9e1a6c0ce61f79545be4619992141c8f6a496d17
parent97e8b94ef82e44de12bac81c2716697378b918b3 (diff)
downloadrtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.gz
rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.tar.bz2
rtmux-63795f6c04c8b9635ccf60902d35631f3dc02007.zip
Missing time.h.
-rw-r--r--log.c3
-rw-r--r--session.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/log.c b/log.c
index 9d63e5be..dba32e49 100644
--- a/log.c
+++ b/log.c
@@ -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"
diff --git a/session.c b/session.c
index d430af06..f2ad1cf4 100644
--- a/session.c
+++ b/session.c
@@ -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"