summaryrefslogtreecommitdiffstats
path: root/src/vmtbl.c
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2017-04-03 16:32:04 -0300
committermongo <andmarti@gmail.com>2017-04-03 16:32:04 -0300
commit451d00fc159a9811f036994a39d2c8646d01e7ee (patch)
treeb3c6588b79d444578ef5bc668562be5f0db40c39 /src/vmtbl.c
parente829f116491fa441452cbc77cb52e1a511fb13ba (diff)
cleaning code. removing unneeded/comments lines. starting to isolate UI code
Diffstat (limited to 'src/vmtbl.c')
-rw-r--r--src/vmtbl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/vmtbl.c b/src/vmtbl.c
index 7f79d96..7135b10 100644
--- a/src/vmtbl.c
+++ b/src/vmtbl.c
@@ -1,15 +1,13 @@
#include <stdio.h>
-#include <ncurses.h>
+#include <stdlib.h> // for atoi
#include <unistd.h>
+
#include "vmtbl.h"
#include "sc.h"
#include "macros.h"
#include "color.h" // for set_ucolor
#include "conf.h" // for set_ucolor
#include "trigger.h"
-#include <stdlib.h> // for atoi
-
-//LINUX - PSC not def
#define ATBL_P(tbl, row, col) (*(tbl + row) + (col))