summaryrefslogtreecommitdiff
path: root/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'output.c')
-rw-r--r--output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/output.c b/output.c
index 7f37c3a..e767e2f 100644
--- a/output.c
+++ b/output.c
@@ -18,9 +18,9 @@
#include <curses.h>
// #include "main.h"
-int curses_print(long long ib, long long ob) {
-// move(0,0);
- clear();
+int out(long long ib, long long ob) {
+ move(0,0);
+// clear();
printw("I: %ld\n", ib);
printw("O: %ld\n", ob);
refresh();