diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-07-13 14:14:03 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2014-08-21 15:34:12 +0200 |
commit | 18b70b5b8194233d5d34fef504b69eea66374826 (patch) | |
tree | b563d1a65ff0252170bf2759bfd2dbf365166412 /openbsc | |
parent | 8b7a9626a20ee7de20d1e09cfa1e8491a2325d52 (diff) |
controlif: declare controlif_setup() in control_cmd.h
this avoids us to copy+paste external declarations over all 'main'
files.
Diffstat (limited to 'openbsc')
-rw-r--r-- | openbsc/include/openbsc/control_cmd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/control_cmd.h b/openbsc/include/openbsc/control_cmd.h index c94c7b57..82252cb6 100644 --- a/openbsc/include/openbsc/control_cmd.h +++ b/openbsc/include/openbsc/control_cmd.h @@ -148,4 +148,7 @@ struct ctrl_cmd_element cmd_##cmdname = { \ .verify = &verify_##cmdname, \ } +struct gsm_network; +int controlif_setup(struct gsm_network *gsmnet, uint16_t port); + #endif /* _CONTROL_CMD_H */ |