mirror of
https://github.com/json-c/json-c.git
synced 2026-03-22 14:39:07 +08:00
Merge pull request #340 from commodo/fix-appveyor-build
strerror_override: add extern "C" and JSON_EXPORT specifiers for Visual C++ compilers
This commit is contained in:
@@ -22,7 +22,7 @@ install:
|
||||
- sh autogen.sh
|
||||
|
||||
before_script:
|
||||
- ./configure --enable-strerror-override
|
||||
- ./configure
|
||||
|
||||
script:
|
||||
- make
|
||||
|
||||
@@ -4,10 +4,20 @@
|
||||
#include "config.h"
|
||||
#include <errno.h>
|
||||
|
||||
char *_json_c_strerror(int errno_in);
|
||||
#include "json_object.h" /* for JSON_EXPORT */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
JSON_EXPORT char *_json_c_strerror(int errno_in);
|
||||
|
||||
#ifndef STRERROR_OVERRIDE_IMPL
|
||||
#define strerror _json_c_strerror
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _json_strerror_override_h_ */
|
||||
|
||||
Reference in New Issue
Block a user