diff options
author | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
commit | d38d2553649555714bfe20f8ca72614974993d47 (patch) | |
tree | 2eefae41a5578056b610d9db0cf7293b6949e2b5 /OpenAL32/alExtension.cpp | |
parent | 83432a7e5c7f565a08c41bb104ae25286c5fc82b (diff) |
More include cleanups
Diffstat (limited to 'OpenAL32/alExtension.cpp')
-rw-r--r-- | OpenAL32/alExtension.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenAL32/alExtension.cpp b/OpenAL32/alExtension.cpp index 5abcf1cf..80681090 100644 --- a/OpenAL32/alExtension.cpp +++ b/OpenAL32/alExtension.cpp @@ -20,17 +20,18 @@ #include "config.h" +#include <cctype> #include <cstdlib> #include <cstring> -#include <cctype> #include "AL/al.h" #include "AL/alc.h" -#include "alcmain.h" -#include "alcontext.h" #include "alError.h" +#include "alcontext.h" #include "alexcpt.h" +#include "opthelpers.h" + AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName) START_API_FUNC |