diff options
author | Filip Gawin <[email protected]> | 2019-01-09 19:42:40 +0100 |
---|---|---|
committer | Filip Gawin <[email protected]> | 2019-01-09 19:42:40 +0100 |
commit | 4169c6f37db4fa1cc8e2d052b377af479763a930 (patch) | |
tree | aedd04c62d0edb41fe351d0fa4c94e87d00d71f2 /utils | |
parent | 8f35f464a1b3ae1b8772a4645941a1fb2fec006e (diff) |
Use c++ headers
Diffstat (limited to 'utils')
-rw-r--r-- | utils/makehrtf.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/utils/makehrtf.cpp b/utils/makehrtf.cpp index ce6643a4..bb42b2d1 100644 --- a/utils/makehrtf.cpp +++ b/utils/makehrtf.cpp @@ -61,15 +61,15 @@ #include "config.h" #define _UNICODE -#include <stdio.h> -#include <stdlib.h> -#include <stdarg.h> -#include <stddef.h> -#include <string.h> -#include <limits.h> -#include <stdint.h> -#include <ctype.h> -#include <math.h> +#include <cstdio> +#include <cstdlib> +#include <cstdarg> +#include <cstddef> +#include <cstring> +#include <climits> +#include <cstdint> +#include <cctype> +#include <cmath> #ifdef HAVE_STRINGS_H #include <strings.h> #endif |