1.change inline usage in code and mvec in makefile to adapt to GCC version
[o-du/phy.git] / fapi_5g / source / include / nr5g_fapi_memory.h
index 0b877df..2d5713c 100644 (file)
 #define NR5G_FAPI_MEMSET(s, x, c, n) nr5g_fapi_memset_bound_check(s, x, c, n)
 #define NR5G_FAPI_STRCPY(d, x, s, n) nr5g_fapi_strcpy_bound_check(d, x, s, n)
 
-inline uint8_t nr5g_fapi_memcpy_bound_check(
+uint8_t nr5g_fapi_memcpy_bound_check(
     void *d,
     size_t x,
     const void *s,
     size_t n);
-inline uint8_t nr5g_fapi_memset_bound_check(
+uint8_t nr5g_fapi_memset_bound_check(
     void *s,
     size_t x,
     const int32_t c,
     size_t n);
-inline uint8_t nr5g_fapi_strcpy_bound_check(
+uint8_t nr5g_fapi_strcpy_bound_check(
     char *d,
     size_t x,
     const char *s,