summaryrefslogtreecommitdiffstats
path: root/liblog_use_stderr.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-02-09 15:04:27 +0100
committerMattias Andrée <m@maandree.se>2025-02-09 15:04:27 +0100
commited004cba0e8d1d383def76f795b1e63ba0aaa89a (patch)
treeb12e5f23329f631b66c19b932551e4dff5aa477f /liblog_use_stderr.c
downloadliblog-ed004cba0e8d1d383def76f795b1e63ba0aaa89a.tar.gz
liblog-ed004cba0e8d1d383def76f795b1e63ba0aaa89a.tar.bz2
liblog-ed004cba0e8d1d383def76f795b1e63ba0aaa89a.tar.xz
First commit (everything was written 2024)
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'liblog_use_stderr.c')
-rw-r--r--liblog_use_stderr.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/liblog_use_stderr.c b/liblog_use_stderr.c
new file mode 100644
index 0000000..f66d953
--- /dev/null
+++ b/liblog_use_stderr.c
@@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+extern inline struct liblog_output *liblog_use_stderr(struct liblog_context *, const char *, int);
+
+#else
+
+int main(void) {return 0;} /* TODO test */
+
+#endif