diff options
author | 2012-03-15 09:22:31 +0000 | |
---|---|---|
committer | 2012-03-15 09:22:31 +0000 | |
commit | 413e12e7c82b8fd145c32568c6475532537846a0 (patch) | |
tree | 833caf763fd6152ac4eabba862d1342c47ee88b2 /usr.bin/tmux/tty.c | |
parent | Add a helper function for enabling an optimization to make some code (diff) | |
download | wireguard-openbsd-413e12e7c82b8fd145c32568c6475532537846a0.tar.xz wireguard-openbsd-413e12e7c82b8fd145c32568c6475532537846a0.zip |
Fix a warning. Doh.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 3cf61ba3aa8..ad27523acaf 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.119 2012/03/15 09:10:33 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.120 2012/03/15 09:22:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -43,6 +43,7 @@ void tty_check_bg(struct tty *, struct grid_cell *); void tty_colours_fg(struct tty *, const struct grid_cell *); void tty_colours_bg(struct tty *, const struct grid_cell *); +int tty_large_region(struct tty *, const struct tty_ctx *); void tty_redraw_region(struct tty *, const struct tty_ctx *); void tty_emulate_repeat( struct tty *, enum tty_code_code, enum tty_code_code, u_int); |