From 317e048d5a4fac4526e076130ebc0c3ca2d72681 Mon Sep 17 00:00:00 2001 From: Andrea Odetti Date: Mon, 31 Aug 2020 19:00:16 +0100 Subject: [PATCH] Remove windows includes. Signed-off-by: Andrea Odetti --- test/TestCPU6502/stdafx.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/TestCPU6502/stdafx.h b/test/TestCPU6502/stdafx.h index 17974229..df7e529f 100644 --- a/test/TestCPU6502/stdafx.h +++ b/test/TestCPU6502/stdafx.h @@ -9,14 +9,4 @@ #include -#if _MSC_VER >= 1600 // supported from VS2010 (cl.exe v16.00) -#include // cleanup WORD DWORD -> uint16_t uint32_t -#else -#include -typedef UINT8 uint8_t; -typedef UINT16 uint16_t; -typedef UINT32 uint32_t; -typedef UINT64 uint64_t; -#endif - #include