aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/random_buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vppinfra/random_buffer.c')
-rw-r--r--src/vppinfra/random_buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/random_buffer.c b/src/vppinfra/random_buffer.c
index 52de5d34dd0..4fa965b80c5 100644
--- a/src/vppinfra/random_buffer.c
+++ b/src/vppinfra/random_buffer.c
@@ -38,7 +38,7 @@
#include <vppinfra/random_buffer.h>
/* Fill random buffer. */
-void
+__clib_export void
clib_random_buffer_fill (clib_random_buffer_t * b, uword n_words)
{
uword *w, n = n_words;
@@ -58,7 +58,7 @@ clib_random_buffer_fill (clib_random_buffer_t * b, uword n_words)
while (n > 0);
}
-void
+__clib_export void
clib_random_buffer_init (clib_random_buffer_t * b, uword seed)
{
uword i, j;