blob: cee953583f8c5e0b8015a0be24f4de6e73dfb920 [file] [log] [blame]
Sylvain Munautac3e61a2010-07-25 18:08:54 +02001#ifndef OSMOCORE_PANIC_H
2#define OSMOCORE_PANIC_H
3
4#include <stdarg.h>
5
6typedef void (*osmo_panic_handler_t)(const char *fmt, va_list args);
7
8void osmo_panic(const char *fmt, ...);
9void osmo_set_panic_handler(osmo_panic_handler_t *h);
10
11#endif