mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:15:43 +01:00
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:
parent
dda4392cd5
commit
8f57464190
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
#include <math.h>
|
||||
#include <pthread.h>
|
||||
#include <syslog.h>
|
||||
#include <sys/signal.h>
|
||||
#include <signal.h>
|
||||
#include "alsaloop.h"
|
||||
|
||||
struct loopback_thread {
|
||||
|
|
Loading…
Reference in a new issue