diff options
author | Bobby Bingham <[email protected]> | 2023-06-15 23:24:59 -0500 |
---|---|---|
committer | Bobby Bingham <[email protected]> | 2023-06-16 00:09:54 -0500 |
commit | 200e35e604bb7b5161e407eebfd01f105cfbafb6 (patch) | |
tree | 61af196ceb3d241ef1f35e94330502f9a91ba559 /flow/gsl/gslcommon.c | |
parent | 218293239213ee12bf70d1c11b8c138ea5ce1aa5 (diff) | |
download | arts-200e35e604bb7b5161e407eebfd01f105cfbafb6.tar.gz arts-200e35e604bb7b5161e407eebfd01f105cfbafb6.zip |
Use poll.h instead of sys/poll.h
poll.h is the standard header name, and musl warns for including the wrong
one.
Signed-off-by: Bobby Bingham <[email protected]>
Diffstat (limited to 'flow/gsl/gslcommon.c')
-rw-r--r-- | flow/gsl/gslcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flow/gsl/gslcommon.c b/flow/gsl/gslcommon.c index 6c8a692..b026e8e 100644 --- a/flow/gsl/gslcommon.c +++ b/flow/gsl/gslcommon.c @@ -22,7 +22,7 @@ #include <string.h> #include <sched.h> #include <errno.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/stat.h> #include <sys/time.h> |