Changed log file...

This commit is contained in:
Ognjen Milan Robovic 2023-12-17 05:51:31 -05:00
parent 4245aca400
commit 76369c4ff7
2 changed files with 2 additions and 3 deletions

View File

@ -2,6 +2,8 @@
#include <stdio.h>
FILE * log_file;
static
void log(const char * const message, const char * const color) {
fputs(color, log_file);

View File

@ -16,9 +16,6 @@ language_t language = DEFAULT_LANGUAGE;
typedef void (*syntax_setter_t)(void);
#include <stdio.h>
FILE * log_file;
#include "log.h"
#include "syntax.h"
#include "bot.h"