diff options
author | Kevin Lange <kevin.lange@phpwnage.com> | 2012-03-19 09:55:45 -0700 |
---|---|---|
committer | Kevin Lange <kevin.lange@phpwnage.com> | 2012-03-19 09:55:45 -0700 |
commit | 022782ce09d6ec0572740da73d375289b8d6da02 (patch) | |
tree | 1e6a3f7f915898f1f21bb127a29ad12e3d8bac18 /src/nyancat.c | |
parent | 004e132aceb3f00597e9a753edfac09b0542c750 (diff) | |
parent | 3fccb064bd3f6748c891026162b9e2d867c79fd4 (diff) | |
download | nyancat-022782ce09d6ec0572740da73d375289b8d6da02.tar.gz |
Merge pull request #15 from rctay/rc/solaris
fixes for Solaris
Diffstat (limited to 'src/nyancat.c')
-rw-r--r-- | src/nyancat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nyancat.c b/src/nyancat.c index 68d43f2..33f8522 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -49,6 +49,7 @@ * WITH THE SOFTWARE. */ +#include <ctype.h> #include <stdio.h> #include <stdint.h> #include <string.h> @@ -59,6 +60,13 @@ #include <setjmp.h> #include <sys/ioctl.h> +#ifndef TIOCGWINSZ +#include <termios.h> +#ifdef ECHO +#undef ECHO +#endif +#endif + /* * telnet.h contains some #defines for the various * commands, escape characters, and modes for telnet. |