summaryrefslogtreecommitdiffstats
path: root/src/common/common_funcs.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-21 14:12:49 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-28 01:36:54 +0200
commit2d044a67c932403b81fdde6f81d461c6e7c11efe (patch)
tree84e423036be6e126d39ad18b02662f6ea6677ea1 /src/common/common_funcs.h
parentCommon: Cleanup profiler includes. (diff)
downloadyuzu-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/common_funcs.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 91b74c6bc..cc74a228e 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -5,8 +5,6 @@
#pragma once
#include "common_types.h"
-#include <cstdlib>
-
#define b2(x) ( (x) | ( (x) >> 1) )
#define b4(x) ( b2(x) | ( b2(x) >> 2) )
@@ -43,8 +41,6 @@
#ifndef _MSC_VER
-#include <errno.h>
-
#if defined(__x86_64__) || defined(_M_X64)
#define Crash() __asm__ __volatile__("int $3")
#elif defined(_M_ARM)