libosmocore  0.9.3
Osmocom core library
include/osmocom/core/panic.h
Go to the documentation of this file.
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