Browse Source
Merge pull request #373 from commodo/fix-appveyor-build
build: fix build on appveyor CI
tags/json-c-0.13-20171207
Eric Haszlakiewicz
GitHub
7 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
json_util.c
-
strerror_override.h
|
|
@@ -39,6 +39,7 @@ |
|
|
|
#endif /* HAVE_UNISTD_H */ |
|
|
|
|
|
|
|
#ifdef WIN32 |
|
|
|
# define strtoll _strtoi64 |
|
|
|
# define WIN32_LEAN_AND_MEAN |
|
|
|
# include <windows.h> |
|
|
|
# include <io.h> |
|
|
|
|
|
@@ -10,12 +10,12 @@ |
|
|
|
extern "C" { |
|
|
|
#endif |
|
|
|
|
|
|
|
#include <string.h> |
|
|
|
|
|
|
|
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 |
|
|
|