diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-09-28 07:15:46 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-09-28 07:15:46 +0000 |
commit | 563607bfd8a6b9ae9d5a4156b218f7098e9367f5 (patch) | |
tree | 4d0d77870507a80b04c129ed3db7ba2072d9b931 /usr.bin/tmux | |
parent | 5748e6aa24962647ed31865b3976f89bb472de18 (diff) |
Nuke a leftover RB tree declaration spotted by blambert.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index e419cb59e26..7be46061ea2 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.241 2010/09/26 20:43:30 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.242 2010/09/28 07:15:45 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1827,9 +1827,7 @@ int screen_check_selection(struct screen *, u_int, u_int); /* window.c */ extern struct windows windows; -int window_cmp(struct window *, struct window *); int winlink_cmp(struct winlink *, struct winlink *); -RB_PROTOTYPE(windows, window, entry, window_cmp); RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp); struct winlink *winlink_find_by_index(struct winlinks *, int); struct winlink *winlink_find_by_window(struct winlinks *, struct window *); |