PR #336: fix to previous change, be sure to include string.h when we're using the real strerror.

This commit is contained in:
Eric Haszlakiewicz
2017-07-27 20:17:25 -07:00
parent 36dbe2d74e
commit af87944585

View File

@@ -14,6 +14,8 @@ JSON_EXPORT char *_json_c_strerror(int errno_in);
#ifndef STRERROR_OVERRIDE_IMPL
#define strerror _json_c_strerror
#else
#include <string.h>
#endif
#ifdef __cplusplus