diff options
author | Alexander Huemer <alexander.huemer@xx.vu> | 2011-09-06 00:09:48 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2014-08-21 15:34:13 +0200 |
commit | 4376bcc1b089920ea454fd773fb35d79dd8a5f14 (patch) | |
tree | 92ddf16641bc6316d5f22cefa4de9fecc4b1d934 | |
parent | a6b34015af942e4eabb0d4f8b0a9a53daa34c3e1 (diff) |
fix some "implicit declaration" warnings in osmo-nitb
-rw-r--r-- | openbsc/include/openbsc/control_if.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/control_if.h b/openbsc/include/openbsc/control_if.h new file mode 100644 index 00000000..96fbf6bf --- /dev/null +++ b/openbsc/include/openbsc/control_if.h @@ -0,0 +1,13 @@ +#ifndef _CONTROL_IF_H +#define _CONTROL_IF_H + +#include <osmocom/core/write_queue.h> +#include <openbsc/control_cmd.h> +#include <openbsc/gsm_data.h> + +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 */ + |