diff options
author | 2020-01-22 13:31:52 +0100 | |
---|---|---|
committer | 2020-01-22 13:31:52 +0100 | |
commit | 399515c7a783f84b5c40c5e1733500b3d62bf634 (patch) | |
tree | 8f2329af45b7ab0e44ba32c0a1522f3e4184a130 /src/tools/chdman.cpp | |
parent | ddf571d8d4488fe9f1003f1cf219cc31d8868283 (diff) |
use C++ library includes (nw)
Diffstat (limited to 'src/tools/chdman.cpp')
-rw-r--r-- | src/tools/chdman.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/chdman.cpp b/src/tools/chdman.cpp index 153a4e34157..44e73083ff4 100644 --- a/src/tools/chdman.cpp +++ b/src/tools/chdman.cpp @@ -5,8 +5,8 @@ CHD compression frontend ****************************************************************************/ -#include <stdio.h> // must be here otherwise issues with I64FMT in MINGW -#include <assert.h> +#include <stdio.h> // must be stdio.h and here otherwise issues with I64FMT in MINGW +#include <cassert> #include "osdcore.h" #include "corefile.h" @@ -17,11 +17,11 @@ #include "md5.h" #include "sha1.h" #include "vbiparse.h" -#include <stdarg.h> -#include <stdlib.h> -#include <stdio.h> -#include <time.h> -#include <ctype.h> +#include <cstdarg> +#include <cstdlib> +#include <cstdio> +#include <ctime> +#include <cctype> #include <iostream> #include <cassert> |