From 8a122426c654ce87568b6be78af7e66df4a1b4c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rg=20Krause?= Date: Thu, 28 May 2015 09:54:46 +0200 Subject: [PATCH] Fix redirection of incorrect system headers The POSIX correct header include is `` [1] and `` The glibc silently redirects these incorrect includes, musl libc prints a warning: #warning redirecting incorrect #include to #warning redirecting incorrect #include to [1] http://pubs.opengroup.org/onlinepubs/7908799/xsh/poll.h.html [2] http://pubs.opengroup.org/onlinepubs/7908799/xsh/signal.h.html --- player.c | 2 +- rtsp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/player.c b/player.c index 561c3f22..3b28eee2 100644 --- a/player.c +++ b/player.c @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/rtsp.c b/rtsp.c index 91e0728e..379662a2 100644 --- a/rtsp.c +++ b/rtsp.c @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include "config.h" -- 2.47.3