gprs: Fix compiler warnings in sgsn_main.c

sgsn_main.c: In function ‘main’:
sgsn_main.c:345:2: warning: implicit declaration of function ‘gprs_sndcp_vty_init’ [-Wimplicit-function-declaration]
  gprs_sndcp_vty_init();
  ^
sgsn_main.c:354:2: warning: implicit declaration of function ‘sgsn_gtp_init’ [-Wimplicit-function-declaration]
  rc = sgsn_gtp_init(&sgsn_inst);
  ^
This commit is contained in:
Holger Hans Peter Freyther 2014-04-04 12:51:28 +02:00
parent 5a1b329a9e
commit 90e9a445c8
1 changed files with 4 additions and 0 deletions

View File

@ -235,4 +235,8 @@ int sgsn_ctrl_cmds_install(void);
struct imsi_acl_entry;
struct imsi_acl_entry *sgsn_acl_lookup(const char *imsi);
int gprs_sndcp_vty_init(void);
struct sgsn_instance;
int sgsn_gtp_init(struct sgsn_instance *sgi);
#endif /* _GPRS_SGSN_H */