diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-06-25 06:00:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-06-25 06:00:45 +0000 |
commit | 9144d308484e85d757592698dbce3a7b4cfeee53 (patch) | |
tree | 4a724f77100ae7bd6a3e96b4baac0e7d4d38e18b | |
parent | 83078bdcbcc845ea56cf05374190d2115c06dfcb (diff) | |
download | rtmux-9144d308484e85d757592698dbce3a7b4cfeee53.tar.gz rtmux-9144d308484e85d757592698dbce3a7b4cfeee53.tar.bz2 rtmux-9144d308484e85d757592698dbce3a7b4cfeee53.zip |
Unused prototypes. Found by lint, no binary change.
-rw-r--r-- | cfg.c | 1 | ||||
-rw-r--r-- | cmd-clear-history.c | 1 | ||||
-rw-r--r-- | cmd-lock-server.c | 2 | ||||
-rw-r--r-- | cmd-set-window-option.c | 5 |
4 files changed, 0 insertions, 9 deletions
@@ -30,7 +30,6 @@ * argv array and executed as a command. */ -char *cfg_string(FILE *, char, int); void printflike2 cfg_print(struct cmd_ctx *, const char *, ...); void printflike2 cfg_error(struct cmd_ctx *, const char *, ...); diff --git a/cmd-clear-history.c b/cmd-clear-history.c index 0c08f9b5..4399c6c2 100644 --- a/cmd-clear-history.c +++ b/cmd-clear-history.c @@ -24,7 +24,6 @@ * Clear pane history. */ -void cmd_clear_history_init(struct cmd *, int); int cmd_clear_history_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_clear_history_entry = { diff --git a/cmd-lock-server.c b/cmd-lock-server.c index 5dac3292..74b7b622 100644 --- a/cmd-lock-server.c +++ b/cmd-lock-server.c @@ -30,8 +30,6 @@ int cmd_lock_server_exec(struct cmd *, struct cmd_ctx *); -int cmd_lock_server_callback(void *, const char *); - const struct cmd_entry cmd_lock_server_entry = { "lock-server", "lock", "", diff --git a/cmd-set-window-option.c b/cmd-set-window-option.c index 8d17498e..cc9bf963 100644 --- a/cmd-set-window-option.c +++ b/cmd-set-window-option.c @@ -27,12 +27,7 @@ * Set a window option. */ -int cmd_set_window_option_parse(struct cmd *, int, char **, char **); int cmd_set_window_option_exec(struct cmd *, struct cmd_ctx *); -void cmd_set_window_option_send(struct cmd *, struct buffer *); -void cmd_set_window_option_recv(struct cmd *, struct buffer *); -void cmd_set_window_option_free(struct cmd *); -size_t cmd_set_window_option_print(struct cmd *, char *, size_t); const struct cmd_entry cmd_set_window_option_entry = { "set-window-option", "setw", |