diff options
| author | Kevin Lange <kevin.lange@dakko.us> | 2013-03-26 23:19:14 -0700 | 
|---|---|---|
| committer | Kevin Lange <kevin.lange@dakko.us> | 2013-03-26 23:19:14 -0700 | 
| commit | 7822b31b35a3195be30cbfebe0646376b666763c (patch) | |
| tree | 5d8a8866d56c14bbd2674b3f2a279b29536033f2 | |
| parent | 43097ebfc2bc9bc0f721f5f80dc1aede1f7e10d7 (diff) | |
| download | nyancat-7822b31b35a3195be30cbfebe0646376b666763c.tar.gz | |
Remove legacy toaruos compatibility
| -rw-r--r-- | src/nyancat.c | 26 | 
1 files changed, 2 insertions, 24 deletions
| diff --git a/src/nyancat.c b/src/nyancat.c index 44bdf06..040e9fd 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -60,26 +60,15 @@  #include <setjmp.h>  #include <getopt.h> -#ifdef __toaru__ - -#include <syscall.h> - -DEFN_SYSCALL2(nanosleep,  46, unsigned long, unsigned long); - -int usleep(useconds_t time) { -	syscall_nanosleep(0, time / 10000); -} - -#else  #include <sys/ioctl.h> -#endif  #ifndef TIOCGWINSZ  #include <termios.h> +#endif +  #ifdef ECHO  #undef ECHO  #endif -#endif  /*   * telnet.h contains some #defines for the various @@ -531,20 +520,9 @@ int main(int argc, char ** argv) {  		}  		/* Also get the number of columns */ -#ifdef __toaru__ -		if (strstr(term, "toaru")) { -			printf("\033[1003z"); -			fflush(stdout); -			int height; -			scanf("%d,%d", &terminal_width, &height); -		} else { -			terminal_width = 80; /* better safe than sorry */ -		} -#else  		struct winsize w;  		ioctl(0, TIOCGWINSZ, &w);  		terminal_width = w.ws_col; -#endif  	}  	/* Convert the entire terminal string to lower case */ | 
