diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 20:47:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 20:47:09 +0000 |
commit | cf77c80b935da2a822acdc4694cc3bdbcf7021f6 (patch) | |
tree | 7a07f17d010ee4ecd4b4c1e4386b462d1da5699e /window.c | |
parent | 65125c72763f1e03e0854d1313cc8b4c8541e92b (diff) | |
download | rtmux-cf77c80b935da2a822acdc4694cc3bdbcf7021f6.tar.gz rtmux-cf77c80b935da2a822acdc4694cc3bdbcf7021f6.tar.bz2 rtmux-cf77c80b935da2a822acdc4694cc3bdbcf7021f6.zip |
FreeBSD's util.h is libutil.h.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.19 2007-10-04 20:33:16 nicm Exp $ */ +/* $Id: window.c,v 1.20 2007-10-19 20:47:09 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -26,7 +26,12 @@ #include <string.h> #include <termios.h> #include <unistd.h> + +#ifdef USE_LIBUTIL_H +#include <libutil.h> +#else #include <util.h> +#endif #include "tmux.h" |