mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 13:11:33 +00:00
somehow timespec tv_nsec had the wrong type on x86_64... fixed
This commit is contained in:
parent
3df3d4f512
commit
3bb00f4579
@ -71,7 +71,7 @@ TYPEDEF long time_t;
|
|||||||
TYPEDEF long useconds_t;
|
TYPEDEF long useconds_t;
|
||||||
TYPEDEF long suseconds_t;
|
TYPEDEF long suseconds_t;
|
||||||
STRUCT timeval { time_t tv_sec; int tv_usec; };
|
STRUCT timeval { time_t tv_sec; int tv_usec; };
|
||||||
STRUCT timespec { time_t tv_sec; unsigned long tv_nsec; };
|
STRUCT timespec { time_t tv_sec; long tv_nsec; };
|
||||||
|
|
||||||
TYPEDEF int pid_t;
|
TYPEDEF int pid_t;
|
||||||
TYPEDEF int id_t;
|
TYPEDEF int id_t;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user