summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-11-28 14:50:37 +0000
committerTiago Cunha <tcunha@gmx.com>2009-11-28 14:50:37 +0000
commitc12e0b0708ee1aa16608eff9d0ad3f0628cbac0f (patch)
tree3a99b02a67d6a0f3afcf40cc831ba5c74e0b4ffa /tmux.h
parentbbd9652d325013911896687236e1700d601fae6b (diff)
Sync OpenBSD patchset 567:
Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to the rest to reduce lint output.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 12a1265b..45dbabc8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.523 2009-11-28 14:41:17 tcunha Exp $ */
+/* $Id: tmux.h,v 1.524 2009-11-28 14:50:37 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1789,8 +1789,8 @@ int winlink_next_index(struct winlinks *, int);
u_int winlink_count(struct winlinks *);
struct winlink *winlink_add(struct winlinks *, struct window *, int);
void winlink_remove(struct winlinks *, struct winlink *);
-struct winlink *winlink_next(struct winlinks *, struct winlink *);
-struct winlink *winlink_previous(struct winlinks *, struct winlink *);
+struct winlink *winlink_next(struct winlink *);
+struct winlink *winlink_previous(struct winlink *);
void winlink_stack_push(struct winlink_stack *, struct winlink *);
void winlink_stack_remove(struct winlink_stack *, struct winlink *);
int window_index(struct window *, u_int *);