blob: c1642ec4428a848c5dd95042e5046ef108a8a41a [file] [log] [blame]
Holger Hans Peter Freytherba01fa42011-05-12 13:46:33 +02001#ifndef OSMO_APPLICATION_H
2#define OSMO_APPLICATION_H
3
4/**
5 * Routines for helping with the application setup.
6 */
7
8struct log_info;
9struct log_target;
10
11extern struct log_target *osmo_stderr_target;
12
13void osmo_init_ignore_signals(void);
14int osmo_init_logging(const struct log_info *);
15
16#endif