diff options
author | 2013-03-26 10:54:48 +0000 | |
---|---|---|
committer | 2013-03-26 10:54:48 +0000 | |
commit | 6ba5a684107eefc8a6b6283d45b2e5ee1d669f56 (patch) | |
tree | 4609acdf7a522339651d992505c1f46e35f1a41b /usr.bin/tmux/cmd-queue.c | |
parent | for the sake of argument, let's pretend this #if 0 code isn't wanted (diff) | |
download | wireguard-openbsd-6ba5a684107eefc8a6b6283d45b2e5ee1d669f56.tar.xz wireguard-openbsd-6ba5a684107eefc8a6b6283d45b2e5ee1d669f56.zip |
Fix compiler warnings, missing #include. From Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/cmd-queue.c')
-rw-r--r-- | usr.bin/tmux/cmd-queue.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-queue.c b/usr.bin/tmux/cmd-queue.c index 31bbc0354b0..40c3e6be78b 100644 --- a/usr.bin/tmux/cmd-queue.c +++ b/usr.bin/tmux/cmd-queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-queue.c,v 1.6 2013/03/25 11:41:16 nicm Exp $ */ +/* $OpenBSD: cmd-queue.c,v 1.7 2013/03/26 10:54:48 nicm Exp $ */ /* * Copyright (c) 2013 Nicholas Marriott <nicm@users.sourceforge.net> @@ -20,6 +20,7 @@ #include <ctype.h> #include <stdlib.h> +#include <time.h> #include "tmux.h" |