From f18974bd89463c42ca6bfb561a39441d53f22fb9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 16 Oct 2001 16:25:32 +0000 Subject: [PATCH] fix a missing sys/types.h --- libs/audio/targets/snd_oss.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/audio/targets/snd_oss.c b/libs/audio/targets/snd_oss.c index 3c6557ec0..14c0afcb4 100644 --- a/libs/audio/targets/snd_oss.c +++ b/libs/audio/targets/snd_oss.c @@ -30,6 +30,9 @@ static const char rcsid[] = #ifdef HAVE_CONFIG_H # include "config.h" #endif +#ifdef HAVE_SYS_TYPES_H +# include +#endif #ifdef HAVE_SYS_IOCTL_H # include #endif