LibC: Add POSIX spec comments for poll

This commit is contained in:
Brian Gianforcaro 2021-12-20 01:26:27 -08:00 committed by Brian Gianforcaro
commit 3c897d0443
Notes: sideshowbarker 2024-07-17 22:26:06 +09:00

View file

@ -11,6 +11,7 @@
extern "C" { extern "C" {
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html
int poll(pollfd* fds, nfds_t nfds, int timeout_ms) int poll(pollfd* fds, nfds_t nfds, int timeout_ms)
{ {
timespec timeout; timespec timeout;