Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
include
wasm-wasi-musl
__struct_timespec.h
pretty
plain
permalink
blame
history
•
12 lines
•
205 B
1
#ifndef __wasilibc___struct_timespec_h
2
#define __wasilibc___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