mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 19:10:26 +00:00
3f29a12d90
This makes it more straightforward to build a cross-compiler toolchain. Also move math stuff from LibC to LibM.
13 lines
231 B
C
13 lines
231 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
#include <string.h>
|
|
#include <fd_set.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout);
|
|
|
|
__END_DECLS
|
|
|