=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.576 retrieving revision 1.577 diff -c -r1.576 -r1.577 *** src/usr.bin/tmux/tmux.h 2015/11/13 08:09:28 1.576 --- src/usr.bin/tmux/tmux.h 2015/11/14 09:41:07 1.577 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.576 2015/11/13 08:09:28 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.577 2015/11/14 09:41:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1781,1786 **** --- 1781,1788 ---- void server_client_unref(struct client *); void server_client_lost(struct client *); void server_client_loop(void); + void server_client_push_stdout(struct client *); + void server_client_push_stderr(struct client *); /* server-fn.c */ void server_fill_environ(struct session *, struct environ *); *************** *** 1806,1813 **** void server_check_unattached(void); void server_set_identify(struct client *); void server_clear_identify(struct client *); - void server_push_stdout(struct client *); - void server_push_stderr(struct client *); int server_set_stdin_callback(struct client *, void (*)(struct client *, int, void *), void *, char **); void server_unzoom_window(struct window *); --- 1808,1813 ----