aboutsummaryrefslogtreecommitdiffstats
path: root/src/nyancat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nyancat.c')
-rw-r--r--src/nyancat.c28
1 files changed, 3 insertions, 25 deletions
diff --git a/src/nyancat.c b/src/nyancat.c
index 44bdf06..dd3288f 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
@@ -93,7 +82,7 @@ int usleep(useconds_t time) {
* The animation frames are stored separately in
* this header so they don't clutter the core source
*/
-#include "animation.h"
+#include "animation.c"
/*
* Color palette to use for final output
@@ -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 */