]> git.proxmox.com Git - wasi-libc.git/blob - basics/include/__struct_timespec.h
Fix ssize_t redefinition mismatch. (#10)
[wasi-libc.git] / basics / include / __struct_timespec.h
1 #ifndef __wasm_sysroot___struct_timespec_h
2 #define __wasm_sysroot___struct_timespec_h
3
4 #include "__typedef_time_t.h"
5
6 /* As specified in POSIX. */
7 struct timespec {
8 time_t tv_sec;
9 long tv_nsec;
10 };
11
12 #endif