libosmocore
0.9.3
Osmocom core library
|
00001 #pragma once 00002 00009 #include <stdarg.h> 00010 00012 typedef void (*osmo_panic_handler_t)(const char *fmt, va_list args); 00013 00014 extern void osmo_panic(const char *fmt, ...); 00015 extern void osmo_set_panic_handler(osmo_panic_handler_t h); 00016