mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
a3865ecc3c
- Fix Makefile flaking due to ZIPOBJ_FLAGS generation - Make printf() floating point and gdtoa thread safe - Polish up the runit / runitd programs some more - Prune some more makefile dependencies
13 lines
386 B
C
13 lines
386 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
struct timespec {
|
|
int64_t tv_sec;
|
|
int64_t tv_nsec; /* nanoseconds */
|
|
};
|
|
|
|
int sys_futex(int *, int, int, const struct timespec *, int *);
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_TIMESPEC_H_ */
|