diff options
author | Chris Robinson <[email protected]> | 2019-07-28 14:55:02 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-28 14:55:02 -0700 |
commit | e0a795d9d2c5696d7f7c79d3e219af84c25a7776 (patch) | |
tree | 21d4168b712854493bd75c9ca26fb5c821c0dff1 /utils | |
parent | 5428d6acc37e33802b0b66b2f9cdc0a37dd36429 (diff) |
Clean up some more headers
Diffstat (limited to 'utils')
-rw-r--r-- | utils/makemhr/makemhr.cpp | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/utils/makemhr/makemhr.cpp b/utils/makemhr/makemhr.cpp index 70ddbe5a..e480277e 100644 --- a/utils/makemhr/makemhr.cpp +++ b/utils/makemhr/makemhr.cpp @@ -59,45 +59,40 @@ * 1999 */ +#define _UNICODE #include "config.h" -#define _UNICODE +#include "makemhr.h" + +#include <algorithm> +#include <atomic> +#include <chrono> +#include <cmath> +#include <complex> +#include <cstdint> #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 +#include <functional> +#include <limits> +#include <memory> +#include <numeric> +#include <thread> +#include <utility> +#include <vector> + #ifdef HAVE_GETOPT #include <unistd.h> #else #include "../getopt.h" #endif -#include <atomic> -#include <limits> -#include <vector> -#include <chrono> -#include <thread> -#include <complex> -#include <numeric> -#include <algorithm> -#include <functional> - -#include "mysofa.h" - -#include "makemhr.h" #include "loaddef.h" #include "loadsofa.h" #include "win_main_utf8.h" + namespace { using namespace std::placeholders; |