mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Rename include dir to match the convention: from `wasm32-wasi` to `wasm-wasi-musl` Add building stubs which will be used to build and cache WASI libc sysroot.
19 lines
308 B
C
Vendored
19 lines
308 B
C
Vendored
#ifndef __wasilibc___struct_tm_h
|
|
#define __wasilibc___struct_tm_h
|
|
|
|
struct tm {
|
|
int tm_sec;
|
|
int tm_min;
|
|
int tm_hour;
|
|
int tm_mday;
|
|
int tm_mon;
|
|
int tm_year;
|
|
int tm_wday;
|
|
int tm_yday;
|
|
int tm_isdst;
|
|
int __tm_gmtoff;
|
|
const char *__tm_zone;
|
|
int __tm_nsec;
|
|
};
|
|
|
|
#endif
|