From b8209a2349ffb2153e0c17f43412f2c9906aa8d0 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 15:34:29 -0800 Subject: Moved headers to separate directory --- draw.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'draw.c') diff --git a/draw.c b/draw.c index b9d73d9..dd0eb89 100644 --- a/draw.c +++ b/draw.c @@ -6,18 +6,17 @@ //Windows/Unix Compatability #if defined _WIN32 || defined _WIN64 #include -#include "windows/draw.h" -#include "windows/read_cfg.h" #else #include -#include "unix/draw.h" -#include "unix/read_cfg.h" #endif -#include "entry.h" -#include "group.h" -#include "read_cfg.h" -#include "draw.h" +//*_extend.h headers handle differences in os (i.e. windows vs unix) +#include "include/draw.h" +#include "include/draw_extend.h" +#include "include/entry.h" +#include "include/group.h" +#include "include/read_cfg.h" +#include "include/read_cfg_extend.h" #define MAX_LEN 6 #define GAP_SIZE 1 #define WIDTH (getmaxx(stdscr)) //width of the entire term -- cgit