Fix build when strlcpy is present

This commit is contained in:
Jeremy Lakeman 2013-01-11 14:43:37 +10:30
parent 5a82bfcf31
commit 7f9b5f0e4f

View File

@ -21,7 +21,7 @@
#define __STRLCPY_H__
#ifdef HAVE_STRLCPY
#include <bsd/string.h>
#include <string.h>
#else
size_t strlcpy(char *dst, const char *src, size_t sz);
#endif