summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/sys/select.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibC/sys/select.h')
-rw-r--r--Userland/Libraries/LibC/sys/select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/sys/select.h b/Userland/Libraries/LibC/sys/select.h
index 57a61cc145..02e9f0d6f6 100644
--- a/Userland/Libraries/LibC/sys/select.h
+++ b/Userland/Libraries/LibC/sys/select.h
@@ -16,6 +16,6 @@
__BEGIN_DECLS
int select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout);
-int pselect(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, const struct timespec* timeout, const sigset_t* sigmask);
+int pselect(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, const struct timespec* timeout, sigset_t const* sigmask);
__END_DECLS