diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-21 18:40:30 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-21 18:40:30 +0000 |
commit | 044ebf195237c2c5ea13df5f1f93d61eaacf9d7b (patch) | |
tree | 5c514431943ad70913727c50de124e9568a78372 /tmux.h | |
parent | b9a179089b7edec7930115ac7f1b5ae8e96f8792 (diff) | |
download | rtmux-044ebf195237c2c5ea13df5f1f93d61eaacf9d7b.tar.gz rtmux-044ebf195237c2c5ea13df5f1f93d61eaacf9d7b.tar.bz2 rtmux-044ebf195237c2c5ea13df5f1f93d61eaacf9d7b.zip |
Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by
lint.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1349,7 +1349,6 @@ extern const struct grid_cell grid_default_cell; struct grid *grid_create(u_int, u_int, u_int); void grid_destroy(struct grid *); int grid_compare(struct grid *, struct grid *); -void grid_reduce_line(struct grid *, u_int, u_int); void grid_expand_line(struct grid *, u_int, u_int); void grid_expand_line_utf8(struct grid *, u_int, u_int); void grid_scroll_line(struct grid *); @@ -1603,7 +1602,6 @@ void printflike1 log_warnx(const char *, ...); void printflike1 log_info(const char *, ...); void printflike1 log_debug(const char *, ...); void printflike1 log_debug2(const char *, ...); -void printflike1 log_debug3(const char *, ...); __dead void log_fatal(const char *, ...); __dead void log_fatalx(const char *, ...); |