sortix-mirror/build-aux/tests/have-strlcpy.c

9 lines
138 B
C

#include <string.h>
int main(void)
{
size_t (*ptr)(char*, const char*, size_t) = strlcpy;
return ptr ? 0 : 1;
}
#define HAVE_STRLCPY 1