diff options
author | Chris Robinson <[email protected]> | 2008-01-16 14:09:04 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-01-16 14:09:04 -0800 |
commit | 6735fc791148222689c0c6b42d7ca5132fcd340c (patch) | |
tree | 1023b808c821c5cb8ab078846042b12ddf51fbb0 /Alc | |
parent | be34dbe608b2e1a2d8239f00ad5ee0c2a902178d (diff) |
Add missing config.h includes
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/alcConfig.c | 2 | ||||
-rw-r--r-- | Alc/alcRing.c | 4 | ||||
-rw-r--r-- | Alc/alcThread.c | 2 | ||||
-rw-r--r-- | Alc/bs2b.c | 2 | ||||
-rw-r--r-- | Alc/dsound.c | 2 | ||||
-rw-r--r-- | Alc/oss.c | 2 | ||||
-rw-r--r-- | Alc/winmm.c | 2 |
7 files changed, 14 insertions, 2 deletions
diff --git a/Alc/alcConfig.c b/Alc/alcConfig.c index c4b2fab0..b6a28a6e 100644 --- a/Alc/alcConfig.c +++ b/Alc/alcConfig.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <stdlib.h> #include <stdio.h> #include <ctype.h> diff --git a/Alc/alcRing.c b/Alc/alcRing.c index c2384a83..8ae7ab62 100644 --- a/Alc/alcRing.c +++ b/Alc/alcRing.c @@ -18,11 +18,11 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <string.h> #include <stdlib.h> -#include "config.h" - #include "alMain.h" diff --git a/Alc/alcThread.c b/Alc/alcThread.c index 6752f702..6e7237af 100644 --- a/Alc/alcThread.c +++ b/Alc/alcThread.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <stdlib.h> #include "alMain.h" @@ -21,6 +21,8 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
+#include "config.h"
+
#include <math.h>
#include "bs2b.h"
diff --git a/Alc/dsound.c b/Alc/dsound.c index d2708f0a..60977df7 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <stdlib.h> #include <stdio.h> #include <memory.h> @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <sys/ioctl.h> #include <sys/types.h> #include <sys/stat.h> diff --git a/Alc/winmm.c b/Alc/winmm.c index 7018f098..17570efc 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -18,6 +18,8 @@ * Or go to http://www.gnu.org/copyleft/lgpl.html */ +#include "config.h" + #include <stdlib.h> #include <stdio.h> #include <memory.h> |