diff options
author | Chris Robinson <[email protected]> | 2014-05-22 11:33:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-22 11:33:09 -0700 |
commit | 9008bcbe54313ad327a26d5a939b03f5e516a9de (patch) | |
tree | 564af0bfabd068bf180baca5000d43d71f987403 /utils/makehrtf.c | |
parent | 2729a1549bf554936ded9b2500c7c04a017aa4d0 (diff) |
Include strings.h if it exists for strncasecmp
Diffstat (limited to 'utils/makehrtf.c')
-rw-r--r-- | utils/makehrtf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/makehrtf.c b/utils/makehrtf.c index e35c45a7..7c836b33 100644 --- a/utils/makehrtf.c +++ b/utils/makehrtf.c @@ -58,7 +58,6 @@ * 1999 */ -// Needed for 64-bit unsigned integer. #include "config.h" #include <stdio.h> @@ -67,6 +66,9 @@ #include <string.h> #include <ctype.h> #include <math.h> +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif // Rely (if naively) on OpenAL's header for the types used for serialization. #include "AL/al.h" |