diff --git a/pkg/sdk/strlcpy.h b/pkg/sdk/strlcpy.h index 28a7e4a..7b5f58a 100644 --- a/pkg/sdk/strlcpy.h +++ b/pkg/sdk/strlcpy.h @@ -27,7 +27,7 @@ limitations under the License. \return The length of the source string. */ -static inline size_t strlcpy(char *dst, const char *src, size_t size) { +inline size_t strlcpy(char *dst, const char *src, size_t size) { size_t srcsize = strlen(src); if (size == 0) { return srcsize;