diff options
Diffstat (limited to 'src/utils/log.c')
-rw-r--r-- | src/utils/log.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/utils/log.c b/src/utils/log.c index e84f3b4..e1822c0 100644 --- a/src/utils/log.c +++ b/src/utils/log.c @@ -1,5 +1,6 @@ #include "log.h" +#include "utils/file.h" #include <stdarg.h> #include <stdint.h> #include <stdio.h> @@ -16,10 +17,6 @@ void _printLogBack(const char *format, const char *file, int line, ...) { free(errorStr); } -extern char **fileCodes; -extern const char **fileCodes_names; -extern size_t fileCodes_length; - void _printErrorBack(const char *format, const char *file, int line, char *begin, char *end, ...) { va_list args; |