diff options
author | 2017-05-31 15:26:41 +0000 | |
---|---|---|
committer | 2017-05-31 15:26:41 +0000 | |
commit | 05835efcd76520e785049596641af281e315b0f8 (patch) | |
tree | 9153688d8c0d10107d6379ca0bbff730a01ed70c /usr.bin/tmux/window-buffer.c | |
parent | Add support for EV_RECEIPT and EV_DISPATCH flags (diff) | |
download | wireguard-openbsd-05835efcd76520e785049596641af281e315b0f8.tar.xz wireguard-openbsd-05835efcd76520e785049596641af281e315b0f8.zip |
Need time.h.
Diffstat (limited to 'usr.bin/tmux/window-buffer.c')
-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" |