diff options
author | 2012-04-23 23:25:02 +0000 | |
---|---|---|
committer | 2012-04-23 23:25:02 +0000 | |
commit | 2a783fd29fd2c74ca7a2f2efc037ace72391b762 (patch) | |
tree | a2739c94000a5cb20faa31e9c440d09411252d9e /usr.bin/tmux/client.c | |
parent | Use an enum for client exit reasons, from George Nachman. (diff) | |
download | wireguard-openbsd-2a783fd29fd2c74ca7a2f2efc037ace72391b762.tar.xz wireguard-openbsd-2a783fd29fd2c74ca7a2f2efc037ace72391b762.zip |
Add missing prototype.
Diffstat (limited to 'usr.bin/tmux/client.c')
-rw-r--r-- | usr.bin/tmux/client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index 15d652cf76a..81270c08bcf 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.52 2012/04/23 23:18:43 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.53 2012/04/23 23:25:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -59,6 +59,7 @@ void client_signal(int, short, void *); void client_callback(int, short, void *); int client_dispatch_attached(void); int client_dispatch_wait(void *); +const char *client_exit_message(void); /* * Get server create lock. If already held then server start is happening in |