poll.c

Cross-platform polling library for C
git clone git://git.finwo.net/lib/poll.c
Log | Files | Refs | README

commit 3aab83cd66e25f093acd12102f827ca1dacfdcaa
parent e88ca880aad4e6e8fd84d684d002157553c30383
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sun, 31 Dec 2023 00:00:12 +0100

Use poll.h instead of sys/poll.h

Diffstat:
Msrc/fpoll.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fpoll.c b/src/fpoll.c @@ -2,7 +2,7 @@ #include <stddef.h> #include <stdlib.h> #include <string.h> -#include <sys/poll.h> +#include <poll.h> #include "fpoll.h"