mirror of
https://github.com/json-c/json-c.git
synced 2026-04-01 11:29:07 +08:00
13 lines
252 B
C
13 lines
252 B
C
|
|
#ifndef __STRERROR_OVERRIDE_H__
|
||
|
|
#define __STRERROR_OVERRIDE_H__
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
#include <errno.h>
|
||
|
|
|
||
|
|
#if ENABLE_STRERROR_OVERRIDE
|
||
|
|
char *_json_c_strerror(int errno_in);
|
||
|
|
#define strerror _json_c_strerror
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* __STRERROR_OVERRIDE_H__ */
|