diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-07-18 09:30:22 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-07-18 09:30:22 +0200 |
commit | 658013a1e42967e498629367ac7d2d39ba7eec51 (patch) | |
tree | 9100c5d7dd1f199bc9199549323c98a71445443e /src/gui/curses | |
parent | 44acc36e7d59979db35c26575ec36a809fe4399c (diff) | |
download | weechat-658013a1e42967e498629367ac7d2d39ba7eec51.zip |
core: fix compilation of gui-curses-window.c under Solaris
Diffstat (limited to 'src/gui/curses')
-rw-r--r-- | src/gui/curses/gui-curses-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index 53978735a..8049ac0c5 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -27,11 +27,13 @@ #include <stdlib.h> #include <stdio.h> +#include <unistd.h> #include <string.h> #include <ctype.h> #include <stdarg.h> #include <libgen.h> #include <sys/ioctl.h> +#include <sys/termios.h> #include "../../core/weechat.h" #include "../../core/wee-config.h" |