summaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/application.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom/core/application.h')
-rw-r--r--include/osmocom/core/application.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/osmocom/core/application.h b/include/osmocom/core/application.h
new file mode 100644
index 00000000..c1642ec4
--- /dev/null
+++ b/include/osmocom/core/application.h
@@ -0,0 +1,16 @@
+#ifndef OSMO_APPLICATION_H
+#define OSMO_APPLICATION_H
+
+/**
+ * Routines for helping with the application setup.
+ */
+
+struct log_info;
+struct log_target;
+
+extern struct log_target *osmo_stderr_target;
+
+void osmo_init_ignore_signals(void);
+int osmo_init_logging(const struct log_info *);
+
+#endif