diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-31 15:26:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-31 15:26:42 +0000 |
commit | 4f2471a68285cc32fee62e67ad52a91f8365833d (patch) | |
tree | 2c3541c5740a9403595775b38b1782c780806847 /usr.bin/tmux | |
parent | fe8a1ce6ff307eb60ce3e5525f7892acbeb16665 (diff) |
Need time.h.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/window-buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/window-buffer.c b/usr.bin/tmux/window-buffer.c index 1f534efc8e7..66355d84cc8 100644 --- a/usr.bin/tmux/window-buffer.c +++ b/usr.bin/tmux/window-buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-buffer.c,v 1.1 2017/05/30 21:44:59 nicm Exp $ */ +/* $OpenBSD: window-buffer.c,v 1.2 2017/05/31 15:26:41 nicm Exp $ */ /* * Copyright (c) 2017 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -20,6 +20,7 @@ #include <stdlib.h> #include <string.h> +#include <time.h> #include <vis.h> #include "tmux.h" |