From 59947a0329628792e3eb8ea349ee359a37026022 Mon Sep 17 00:00:00 2001 From: Alexander Huemer Date: Tue, 6 Sep 2011 00:09:48 +0200 Subject: fix some "implicit declaration" warnings in osmo-nitb --- openbsc/include/openbsc/control_if.h | 13 +++++++++++++ openbsc/include/openbsc/handover_decision.h | 7 +++++++ openbsc/include/openbsc/rrlp.h | 7 +++++++ openbsc/include/openbsc/token_auth.h | 7 +++++++ openbsc/src/osmo-nitb/bsc_hack.c | 4 ++++ 5 files changed, 38 insertions(+) create mode 100644 openbsc/include/openbsc/control_if.h create mode 100644 openbsc/include/openbsc/handover_decision.h create mode 100644 openbsc/include/openbsc/rrlp.h create mode 100644 openbsc/include/openbsc/token_auth.h diff --git a/openbsc/include/openbsc/control_if.h b/openbsc/include/openbsc/control_if.h new file mode 100644 index 000000000..96fbf6bff --- /dev/null +++ b/openbsc/include/openbsc/control_if.h @@ -0,0 +1,13 @@ +#ifndef _CONTROL_IF_H +#define _CONTROL_IF_H + +#include +#include +#include + +int ctrl_cmd_send(struct osmo_wqueue *queue, struct ctrl_cmd *cmd); +int ctrl_cmd_handle(struct ctrl_cmd *cmd, void *data); +int controlif_setup(struct gsm_network *gsmnet, uint16_t port); + +#endif /* _CONTROL_IF_H */ + diff --git a/openbsc/include/openbsc/handover_decision.h b/openbsc/include/openbsc/handover_decision.h new file mode 100644 index 000000000..81078b05d --- /dev/null +++ b/openbsc/include/openbsc/handover_decision.h @@ -0,0 +1,7 @@ +#ifndef _HANDOVER_DECISION_H +#define _HANDOVER_DECISION_H + +void on_dso_load_ho_dec(void); + +#endif /* _HANDOVER_DECISION_H */ + diff --git a/openbsc/include/openbsc/rrlp.h b/openbsc/include/openbsc/rrlp.h new file mode 100644 index 000000000..c89402a2d --- /dev/null +++ b/openbsc/include/openbsc/rrlp.h @@ -0,0 +1,7 @@ +#ifndef _RRLP_H +#define _RRLP_H + +void on_dso_load_rrlp(void); + +#endif /* _RRLP_H */ + diff --git a/openbsc/include/openbsc/token_auth.h b/openbsc/include/openbsc/token_auth.h new file mode 100644 index 000000000..47dc7aa94 --- /dev/null +++ b/openbsc/include/openbsc/token_auth.h @@ -0,0 +1,7 @@ +#ifndef _TOKEN_AUTH_H +#define _TOKEN_AUTH_H + +void on_dso_load_token(void); + +#endif /* _TOKEN_AUTH_H */ + diff --git a/openbsc/src/osmo-nitb/bsc_hack.c b/openbsc/src/osmo-nitb/bsc_hack.c index b41b80807..001d8f9a4 100644 --- a/openbsc/src/osmo-nitb/bsc_hack.c +++ b/openbsc/src/osmo-nitb/bsc_hack.c @@ -42,6 +42,10 @@ #include #include #include +#include +#include +#include +#include #include "../../bscconfig.h" -- cgit v1.2.3