diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-21 14:12:49 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-28 01:36:54 +0200 |
commit | 2d044a67c932403b81fdde6f81d461c6e7c11efe (patch) | |
tree | 84e423036be6e126d39ad18b02662f6ea6677ea1 /src/common/misc.cpp | |
parent | Common: Cleanup profiler includes. (diff) | |
download | yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.gz yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.bz2 yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.lz yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.xz yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.zst yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/misc.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/misc.cpp b/src/common/misc.cpp index 53cacf37c..d2a049b63 100644 --- a/src/common/misc.cpp +++ b/src/common/misc.cpp @@ -2,12 +2,13 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "common/common_funcs.h" +#include <cstddef> #ifdef _WIN32 #include <windows.h> #else -#include <string.h> +#include <cerrno> +#include <cstring> #endif // Neither Android nor OS X support TLS |