Attempt to fix strlcpy/strlcat error on Travis CI

This commit is contained in:
Zeex 2017-12-30 19:52:01 +06:00
parent 7414a56d7f
commit a90969b6c3

View File

@ -2,8 +2,9 @@
#include <stddef.h>
#if defined __WATCOMC__ && __WATCOMC__ >= 1240
/* OpenWatcom introduced BSD "safe string functions" with version 1.4 */
#if (defined __WATCOMC__ && __WATCOMC__ >= 1240)
/* OpenWatcom introduced BSD "safe string functions" with version 1.4 */
|| defined __APPLE__
#define HAVE_SAFESTR
#endif