summaryrefslogtreecommitdiff
path: root/src/common/utf8.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2014-08-17 13:54:06 -0400
committerGravatar Lioncash2014-08-17 13:54:06 -0400
commitda6f24b37470064f10e68186965949d728fecb3c (patch)
tree61126f8f211a345e9ef568f7de584223f17467a9 /src/common/utf8.cpp
parentCommon: Move header guards over to pragma once (diff)
downloadyuzu-da6f24b37470064f10e68186965949d728fecb3c.tar.gz
yuzu-da6f24b37470064f10e68186965949d728fecb3c.tar.xz
yuzu-da6f24b37470064f10e68186965949d728fecb3c.zip
Common: Move remaining C header includes over to their C++ equivalent
Diffstat (limited to 'src/common/utf8.cpp')
-rw-r--r--src/common/utf8.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/utf8.cpp b/src/common/utf8.cpp
index fe5270183..c83824d35 100644
--- a/src/common/utf8.cpp
+++ b/src/common/utf8.cpp
@@ -18,10 +18,10 @@
18#undef max 18#undef max
19#endif 19#endif
20 20
21#include <stdlib.h> 21#include <cstdlib>
22#include <stdio.h> 22#include <cstdio>
23#include <string.h> 23#include <cstring>
24#include <stdarg.h> 24#include <cstdarg>
25 25
26#include <algorithm> 26#include <algorithm>
27#include <string> 27#include <string>