LibC: Make sure the definition for struct timeval is available

Ideally we'd have a separate header with just struct timeval and include
that (i.e. in a way similar to how macOS, FreeBSD and glibc do this).
This commit is contained in:
Gunnar Beutner 2021-06-16 11:15:13 +02:00 committed by Andreas Kling
parent d7f0d5ffb8
commit 8393e737b7

View file

@ -10,6 +10,7 @@
#include <signal.h>
#include <string.h>
#include <sys/cdefs.h>
#include <sys/time.h>
#include <sys/types.h>
__BEGIN_DECLS