codec_dahdi: Fix poll.h include.

POSIX defines poll.h. sys/poll.h should not be used as it is c-library
internal header which may or may not exist. Notably in musl including
sys/poll.h generates warning of being incorrect.

Change-Id: Ib318c1c7142a737bcf3caa4d8d72560bebe39252
changes/97/4497/1
Timo Teräs 9 years ago committed by Joshua Colp
parent 40becc5c84
commit 04ceef0e83

@ -36,11 +36,11 @@
ASTERISK_REGISTER_FILE()
#include <poll.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/poll.h>
#include <dahdi/user.h>
#include "asterisk/lock.h"

Loading…
Cancel
Save