commit a94b7229326bfb2d0c8fb77a2ec4570c8fb4f9cf from: Stefan Sperling date: Sat Oct 31 15:03:29 2020 UTC include sys/types.h for size_t in our string.h compat header file commit - 7280e29c8ed198cf9253d84bb9289e55adaabf12 commit + a94b7229326bfb2d0c8fb77a2ec4570c8fb4f9cf blob - 5d1c5d79b56116f8029728d0cabb0414f2319e73 blob + 75190903aba8076c7da469a56a00b98cc8825dc8 --- compat/include/string.h +++ compat/include/string.h @@ -8,6 +8,8 @@ #ifndef DIFFCOMPAT_STRING_H #define DIFFCOMPAT_STRING_H +#include + size_t strlcpy(char *dst, const char *src, size_t dstsize); size_t strlcat(char *dst, const char *src, size_t dstsize);