diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-12 13:01:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-12 13:01:20 +0000 |
commit | 9b17dcefb91d8e0e7d156399fb05eda011e43f61 (patch) | |
tree | a130171f3c2e15b6f81c87bde762113d22f2f13e /usr.bin/tmux/tmux.h | |
parent | 13e531ff99d51e80b2e641e2d8afabe342841620 (diff) |
Tidy some common code for destroying sessions into a new function.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 06152be4145..71b38bc1901 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.102 2009/09/10 17:16:24 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.103 2009/09/12 13:01:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1457,6 +1457,7 @@ void server_status_window(struct window *); void server_lock(void); int server_unlock(const char *); void server_kill_window(struct window *); +void server_destroy_session(struct session *); void server_set_identify(struct client *); void server_clear_identify(struct client *); |