summaryrefslogtreecommitdiff
path: root/src/logerr.h
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-02-20 11:26:48 -0300
committerEuAndreh <eu@euandre.org>2024-02-21 05:44:16 -0300
commit613398385703b6e99c8137a1b89454d977ccf2c8 (patch)
tree40c53155336296951b3475a3a0798a59f63edc14 /src/logerr.h
parentMakefile: Include SQL migration files as installable artifacts (diff)
downloadpapod-613398385703b6e99c8137a1b89454d977ccf2c8.tar.gz
papod-613398385703b6e99c8137a1b89454d977ccf2c8.tar.xz
Remove C code and cleanup repository
Diffstat (limited to 'src/logerr.h')
-rw-r--r--src/logerr.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/logerr.h b/src/logerr.h
deleted file mode 100644
index 77f98bd..0000000
--- a/src/logerr.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef LOGERR_H
-#define LOGERR_H
-
-#include "config.h"
-
-#include <stdio.h>
-
-
-void
-vlogerr(
-
- const char *const file,
- const char *const function,
- const int lineno,
- FILE *restrict stream,
- const char *restrict format,
- ...
-);
-
-#define logerr(...) vlogerr(__FILE__, __func__, __LINE__, stderr, __VA_ARGS__)
-
-
-#endif