From aae3b8bfb83abec0f1bb8e4c854c156c03be5ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 19 Feb 2019 00:27:43 +0100 Subject: Started full rewrite in C++. --- err.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'err.h') diff --git a/err.h b/err.h index d9d19ec7..ca5b09ef 100644 --- a/err.h +++ b/err.h @@ -3,8 +3,6 @@ #include -#include "macro.h" - #define _RESET "\x1b[m" #define _BLACK "\x1B[0;30m" #define _RED "\x1B[0;31m" @@ -27,6 +25,7 @@ #define INFO_F(fmt, ...) fprintf(stderr, _BLUE "INFO" _RESET " (%s:%i) " fmt "\n", \ __FILE__, __LINE__, ##__VA_ARGS__) +#if 0 #define LINE(len) do { \ printf(_GREEN); \ FOR(int, i, len) printf("_"); \ @@ -38,5 +37,6 @@ FMT(T)(v, buf); \ INFO_F("%s", buf); \ } while (0) +#endif #endif /* ERR_H */ -- cgit v1.2.3