From dae1c7ed38e9f7a86e66f3674de62778cc981331 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sat, 17 Oct 2020 13:32:25 +0200 Subject: vppinfra: explicitly export symbols Type: improvement Change-Id: I57a9f85f7df1fc48656b72592349f4c544302f77 Signed-off-by: Damjan Marion --- src/vppinfra/bihash_all_vector.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vppinfra/bihash_all_vector.c') diff --git a/src/vppinfra/bihash_all_vector.c b/src/vppinfra/bihash_all_vector.c index 35355b54062..04c13745402 100644 --- a/src/vppinfra/bihash_all_vector.c +++ b/src/vppinfra/bihash_all_vector.c @@ -16,10 +16,10 @@ #include /* Vector of all bihashes */ -void **clib_all_bihashes; +__clib_export void **clib_all_bihashes; static clib_mem_heap_t *clib_all_bihash_heap; -clib_mem_heap_t * +__clib_export clib_mem_heap_t * clib_all_bihash_set_heap (void) { if (PREDICT_FALSE (clib_all_bihash_heap == 0)) @@ -32,7 +32,7 @@ clib_all_bihash_set_heap (void) * Leave it to Beaver to change the size of a bihash * by making a clone in a stack local and then copying it... */ -void +__clib_export void clib_bihash_copied (void *dst, void *src) { int i; -- cgit 1.2.3-korg