summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--term.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/term.c b/term.c
index 5ee88ac..c77d4f1 100644
--- a/term.c
+++ b/term.c
@@ -554,15 +554,3 @@ fail:
 	fclose(file);
 	return -1;
 }
-
-#ifdef TERM_MAIN
-
-int main(void) {
-	struct Term *term = termAlloc(24, 80);
-	wint_t ch;
-	while (WEOF != (ch = getwchar())) {
-		termUpdate(term, ch);
-	}
-}
-
-#endif