talloc_cxt: Fix compiler warning / missing #include

talloc_ctx.c: In function ‘talloc_ctx_init’:
talloc_ctx.c:40:2: warning: implicit declaration of function ‘msgb_talloc_ctx_init’ [-Wimplicit-function-declaration]
  msgb_talloc_ctx_init(ctx_root, 0);
  ^~~~~~~~~~~~~~~~~~~~

Change-Id: Ib8ebc02d5cf0d2b4019473d3750ae7c6f8a32896
This commit is contained in:
Harald Welte 2016-11-11 15:52:58 +01:00
parent 87ef68eb33
commit af9a9b0b44
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
*/
#include <osmocom/core/talloc.h>
#include <osmocom/core/msgb.h>
extern void *tall_bsc_ctx;
extern void *tall_fle_ctx;