mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 22:33:08 +00:00
16 lines
188 B
C
Vendored
16 lines
188 B
C
Vendored
#ifndef __wasilibc___errno_h
|
|
#define __wasilibc___errno_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern _Thread_local int errno;
|
|
|
|
#define errno errno
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|