diff options
author | 2018-08-02 11:56:12 +0000 | |
---|---|---|
committer | 2018-08-02 11:56:12 +0000 | |
commit | 5a3b3eba7e9aa84e6ddad3c81c1f503798856763 (patch) | |
tree | 1e5094ceebd87892b41357ca9393be25549c11bc /usr.bin/tmux/tmux.h | |
parent | Make key trees and some other bits static. (diff) | |
download | wireguard-openbsd-5a3b3eba7e9aa84e6ddad3c81c1f503798856763.tar.xz wireguard-openbsd-5a3b3eba7e9aa84e6ddad3c81c1f503798856763.zip |
session_groups can be static also.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 5f5e93009d9..145125576c0 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.834 2018/08/02 11:44:07 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.835 2018/08/02 11:56:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2281,11 +2281,8 @@ void control_notify_session_window_changed(struct session *); /* session.c */ extern struct sessions sessions; -extern struct session_groups session_groups; int session_cmp(struct session *, struct session *); RB_PROTOTYPE(sessions, session, entry, session_cmp); -int session_group_cmp(struct session_group *, struct session_group *); -RB_PROTOTYPE(session_groups, session_group, entry, session_group_cmp); int session_alive(struct session *); struct session *session_find(const char *); struct session *session_find_by_id_str(const char *); |