=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/usr.bin/tmux/tmux.h 2009/06/25 22:08:15 1.14 +++ src/usr.bin/tmux/tmux.h 2009/06/26 19:44:36 1.15 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.14 2009/06/25 22:08:15 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.15 2009/06/26 19:44:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1217,7 +1217,6 @@ /* client.c */ int client_init(char *, struct client_ctx *, int, int); -int client_flush(struct client_ctx *); int client_main(struct client_ctx *); /* client-msg.c */ @@ -1406,8 +1405,6 @@ struct screen *, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int); -void screen_display_copy_area(struct screen *, struct screen *, - u_int, u_int, u_int, u_int, u_int, u_int); /* window.c */ extern struct windows windows; @@ -1443,7 +1440,6 @@ int window_pane_spawn(struct window_pane *, const char *, const char *, const char **, char **); int window_pane_resize(struct window_pane *, u_int, u_int); -void window_calculate_sizes(struct window *); int window_pane_set_mode( struct window_pane *, const struct window_mode *); void window_pane_reset_mode(struct window_pane *); @@ -1561,6 +1557,5 @@ int xvasprintf(char **, const char *, va_list); int printflike3 xsnprintf(char *, size_t, const char *, ...); int xvsnprintf(char *, size_t, const char *, va_list); -int printflike3 printpath(char *, size_t, const char *, ...); #endif /* TMUX_H */