diff options
-rw-r--r-- | include/local.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/local.h b/include/local.h index 53cb647d..f0db188e 100644 --- a/include/local.h +++ b/include/local.h @@ -32,6 +32,7 @@ #include <stdarg.h> #include <sys/poll.h> #include <errno.h> +#include <linux/types.h> #include <linux/ioctl.h> #include "config.h" @@ -114,9 +115,12 @@ #define snd_ctl_tlv sndrv_ctl_tlv /* kill and replace kernel-specific types */ +#ifndef __user #define __user +#endif +#ifndef __force #define __force -#define __kernel_off_t off_t +#endif #include <sound/asound.h> |