From 3c897d044303c203e04ffe6310615d51f82091c8 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Mon, 20 Dec 2021 01:26:27 -0800 Subject: [PATCH] LibC: Add POSIX spec comments for poll --- Userland/Libraries/LibC/poll.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibC/poll.cpp b/Userland/Libraries/LibC/poll.cpp index 11ef099ee2..8b5f5605f1 100644 --- a/Userland/Libraries/LibC/poll.cpp +++ b/Userland/Libraries/LibC/poll.cpp @@ -11,6 +11,7 @@ extern "C" { +// https://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html int poll(pollfd* fds, nfds_t nfds, int timeout_ms) { timespec timeout;