diff options
author | kcat <[email protected]> | 2020-04-10 15:01:38 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-10 15:01:38 -0700 |
commit | fc140db781eb51dc833442570e0bd133863492a1 (patch) | |
tree | 53ca72fbe967f9197d2609d45947af7e7492a146 | |
parent | e123fa0ec349337ba4db00ebb2bbec1b7bee4cfa (diff) | |
parent | 7548c235bdac9972690ac6e4e0511b9fdce6cdfd (diff) |
Merge pull request #414 from ArthurSonzogni/master
Add missing <cstdarg>
-rw-r--r-- | utils/makemhr/loaddef.cpp | 3 | ||||
-rw-r--r-- | utils/openal-info.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/utils/makemhr/loaddef.cpp b/utils/makemhr/loaddef.cpp index c61c6f6b..d325eda1 100644 --- a/utils/makemhr/loaddef.cpp +++ b/utils/makemhr/loaddef.cpp @@ -26,13 +26,14 @@ #include <algorithm> #include <cctype> #include <cmath> -#include <cstring> #include <cstdarg> #include <cstdio> #include <cstdlib> +#include <cstring> #include <iterator> #include <limits> #include <memory> +#include <cstdarg> #include <vector> #include "alfstream.h" diff --git a/utils/openal-info.c b/utils/openal-info.c index cdce77e0..46e66d45 100644 --- a/utils/openal-info.c +++ b/utils/openal-info.c @@ -22,9 +22,10 @@ * THE SOFTWARE. */ +#include <stdarg.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include "AL/alc.h" #include "AL/al.h" |