blob: 9e132a53e43a812149878adfc14376b8d5d99e84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
*** src/audio.h.orig Thu Jul 26 11:42:22 2001
--- src/audio.h Thu Jul 26 11:42:51 2001
***************
*** 20,26 ****
--- 20,32 ----
#ifndef _AUDIO_H_
#define _AUDIO_H_
+ #ifdef __linux__
#include <linux/soundcard.h>
+ #endif
+ #ifdef __FreeBSD__
+ #include <machine/soundcard.h>
+ #endif
+
#include <sys/ioctl.h>
#include <unistd.h>
#include <fcntl.h>
|