diff --git a/src/log.c b/src/log.c deleted file mode 100644 index 3eb8f15..0000000 --- a/src/log.c +++ /dev/null @@ -1,16 +0,0 @@ -/* See LICENSE file for copyright and license details. */ - -#include -#include - -#include "config.h" -#include "log.h" - -void flog(char* str) { - FILE* fp; - fp = fopen(logfile, "a"); - - fprintf(fp, str); - - fclose(fp); -} diff --git a/src/log.h b/src/log.h deleted file mode 100644 index 3214453..0000000 --- a/src/log.h +++ /dev/null @@ -1,3 +0,0 @@ -/* See LICENSE file for copyright and license details. */ - -static void flog(char* str);