1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef __wasilibc___errno_h #define __wasilibc___errno_h #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus extern thread_local int errno; #else extern _Thread_local int errno; #endif #define errno errno #ifdef __cplusplus } #endif #endif