diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-26 16:44:34 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-05-26 16:44:34 +0000 |
commit | 8a9f9cc67e1e3472ccceed3d2505c63b277bdd68 (patch) | |
tree | c6046cf42d49b7baf27899e7f5784c755a55f6ec /usr.bin/tmux/tmux.h | |
parent | 0f31cd36b18a4e846125940b5fbdb71a8d33b5aa (diff) |
Move imsg into libutil and add a man page.
Minor bump for libutil.
Previous versions of this diff and man page looked at by various people.
"you should just commit" deraadt
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index a3ea02c6e2f..5c810fdbe97 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.221 2010/05/23 19:42:19 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.222 2010/05/26 16:44:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -30,6 +30,7 @@ #include <bitstring.h> #include <event.h> #include <getopt.h> +#include <imsg.h> #include <limits.h> #include <signal.h> #include <stdarg.h> @@ -38,7 +39,6 @@ #include <termios.h> #include "array.h" -#include "imsg.h" extern char *__progname; extern char **environ; |