1.change inline usage in code and mvec in makefile to adapt to GCC version
[o-du/phy.git] / fapi_5g / source / utils / nr5g_fapi_memory.c
index fd14581..92815fc 100644 (file)
@@ -26,7 +26,7 @@
 #include <string.h>
 #include "nr5g_fapi_wls.h"
 
-inline uint8_t nr5g_fapi_memcpy_bound_check(
+uint8_t nr5g_fapi_memcpy_bound_check(
     void *d,
     size_t x,
     const void *s,
@@ -61,7 +61,7 @@ inline uint8_t nr5g_fapi_memcpy_bound_check(
     return SUCCESS;
 }
 
-inline uint8_t nr5g_fapi_memset_bound_check(
+uint8_t nr5g_fapi_memset_bound_check(
     void *s,
     size_t x,
     int32_t c,
@@ -78,7 +78,7 @@ inline uint8_t nr5g_fapi_memset_bound_check(
     return SUCCESS;
 }
 
-inline uint8_t nr5g_fapi_strcpy_bound_check(
+uint8_t nr5g_fapi_strcpy_bound_check(
     char *d,
     size_t x,
     const char *s,