mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
This makes it more straightforward to build a cross-compiler toolchain. Also move math stuff from LibC to LibM.
14 lines
231 B
C
14 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
|
|
|