aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2011-04-26 03:07:46 +0200
committerHarald Welte <laforge@gnumonks.org>2011-04-26 14:36:52 +0200
commit240f01cfa738d353520dd96536031ffbe6054bcc (patch)
treed7b48db8a4823e7a24b5ab70c91131a5be543138
parent28dbfe9bf7a799ab1da2563fd5e007d007b54168 (diff)
include: fix missing extern in osmo_panic* declarations
This patch adds the missing extern to osmo_panic* declarations.
-rw-r--r--include/osmocom/core/panic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/core/panic.h b/include/osmocom/core/panic.h
index c5a83778..c28a8440 100644
--- a/include/osmocom/core/panic.h
+++ b/include/osmocom/core/panic.h
@@ -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