local.h: include sys/types.h to fix issues with pcm.h

sys/types.h is required for the u_int_XX types used by pcm.h.
since a change in pcm.h is not desired, we add the inclusion
to the header that includes pcm.h during build.

Signed-off-by: John Spencer <maillist-alsa@barfooze.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
John Spencer 2013-10-10 18:56:22 +02:00 committed by Takashi Iwai
parent c1fbd57c38
commit 10ecf963ca

View file

@ -31,6 +31,7 @@
#include <endian.h>
#include <stdarg.h>
#include <sys/poll.h>
#include <sys/types.h>
#include <errno.h>
#include <linux/types.h>
#include <linux/ioctl.h>