gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 183/205: poll: prefer <poll.h> over <sys/poll.h>


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 183/205: poll: prefer <poll.h> over <sys/poll.h>
Date: Thu, 20 Apr 2017 16:22:03 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.54.0
in repository gnurl.

commit aa573c3c55cda72ec5ef677d87f6f46a53385f0c
Author: Marcel Raad <address@hidden>
AuthorDate: Mon Apr 10 21:59:42 2017 +0200

    poll: prefer <poll.h> over <sys/poll.h>
    
    The POSIX standard location is <poll.h>. Using <sys/poll.h> results in
    warning spam when using the musl standard library.
    
    Closes https://github.com/curl/curl/pull/1406
---
 lib/select.h     | 6 +++---
 src/tool_sleep.c | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/select.h b/lib/select.h
index e247bd9d0..4ed5dd2f8 100644
--- a/lib/select.h
+++ b/lib/select.h
@@ -24,10 +24,10 @@
 
 #include "curl_setup.h"
 
-#ifdef HAVE_SYS_POLL_H
-#include <sys/poll.h>
-#elif defined(HAVE_POLL_H)
+#ifdef HAVE_POLL_H
 #include <poll.h>
+#elif defined(HAVE_SYS_POLL_H)
+#include <sys/poll.h>
 #endif
 
 /*
diff --git a/src/tool_sleep.c b/src/tool_sleep.c
index d878512ac..e19db5a77 100644
--- a/src/tool_sleep.c
+++ b/src/tool_sleep.c
@@ -25,10 +25,10 @@
 #  include <sys/select.h>
 #endif
 
-#ifdef HAVE_SYS_POLL_H
-#  include <sys/poll.h>
-#elif defined(HAVE_POLL_H)
+#ifdef HAVE_POLL_H
 #  include <poll.h>
+#elif defined(HAVE_SYS_POLL_H)
+#  include <sys/poll.h>
 #endif
 
 #ifdef MSDOS

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]