diff options
author | 2020-01-22 22:04:35 -0500 | |
---|---|---|
committer | 2020-01-22 22:04:35 -0500 | |
commit | 1a5b900759f491bf6b59be67b5446b0a1becb04b (patch) | |
tree | 460c3730885a66d8d38ae4998abc3642b8bbd6b7 /src/tools/src2html.cpp | |
parent | db157a165b71d659d55e6f0bb97278a57a4e8607 (diff) | |
parent | 399515c7a783f84b5c40c5e1733500b3d62bf634 (diff) |
Merge pull request #6195 from firewave/includes
use C++ library includes (nw)
Diffstat (limited to 'src/tools/src2html.cpp')
-rw-r--r-- | src/tools/src2html.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/src2html.cpp b/src/tools/src2html.cpp index 32a21de065e..7b0293ac4b1 100644 --- a/src/tools/src2html.cpp +++ b/src/tools/src2html.cpp @@ -15,11 +15,11 @@ ***************************************************************************/ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <ctype.h> -#include <assert.h> +#include <cstdio> +#include <cstdlib> +#include <cstring> +#include <cctype> +#include <cassert> #include "osdcore.h" #include "corestr.h" #include "corefile.h" |