include: fix missing extern in osmo_panic* declarations

This patch adds the missing extern to osmo_panic* declarations.
This commit is contained in:
Pablo Neira Ayuso 2011-04-26 03:07:46 +02:00 committed by Harald Welte
parent 28dbfe9bf7
commit 240f01cfa7
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
typedef void (*osmo_panic_handler_t)(const char *fmt, va_list args);
void osmo_panic(const char *fmt, ...);
void osmo_set_panic_handler(osmo_panic_handler_t h);
extern void osmo_panic(const char *fmt, ...);
extern void osmo_set_panic_handler(osmo_panic_handler_t h);
#endif