1 #ifndef _json_strerror_override_h_
2 #define _json_strerror_override_h_
3 
4 /**
5  * @file
6  * @brief Do not use, json-c internal, may be changed or removed at any time.
7  */
8 
9 #include "config.h"
10 #include <errno.h>
11 
12 #include "json_object.h" /* for JSON_EXPORT */
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 #include <string.h>
19 
20 JSON_EXPORT char *_json_c_strerror(int errno_in);
21 
22 #ifndef STRERROR_OVERRIDE_IMPL
23 #define strerror _json_c_strerror
24 #endif
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif /* _json_strerror_override_h_ */
31