mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 21:25:08 +00:00

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
|
|
|