diff options
author | 2010-09-28 07:15:45 +0000 | |
---|---|---|
committer | 2010-09-28 07:15:45 +0000 | |
commit | 208ff703dbdc23b0348d0907116aed3ef1ed46c2 (patch) | |
tree | ed6fe7f218c51ba188640fcf8bd528f6168c7e4a | |
parent | Correct the handling of GS.base when iretq faults: the fault happens (diff) | |
download | wireguard-openbsd-208ff703dbdc23b0348d0907116aed3ef1ed46c2.tar.xz wireguard-openbsd-208ff703dbdc23b0348d0907116aed3ef1ed46c2.zip |
Nuke a leftover RB tree declaration spotted by blambert.
-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 *); |