alsaloop: fix wrong alias for signal.h

in POSIX, there is no <sys/signal.h>.

it's merely a legacy alias used by glibc, and the header does nothing
else than including <signal.h>.

so let's do the right thing and use the right name, which works everywhere.

Signed-off-by: John Spencer <maillist-alsa@barfooze.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2013-07-23 14:57:05 +02:00
parent dda4392cd5
commit 8f57464190

View file

@ -31,7 +31,7 @@
#include <math.h> #include <math.h>
#include <pthread.h> #include <pthread.h>
#include <syslog.h> #include <syslog.h>
#include <sys/signal.h> #include <signal.h>
#include "alsaloop.h" #include "alsaloop.h"
struct loopback_thread { struct loopback_thread {