remove stuff we won't need
[pcsx_rearmed.git] / win32 / glue / stdint.h
diff --git a/win32/glue/stdint.h b/win32/glue/stdint.h
deleted file mode 100644 (file)
index 1a1eace..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-//\r
-// Copyright (c) 2008, Wei Mingzhi. All rights reserved.\r
-//\r
-// Use, redistribution and modification of this code is unrestricted\r
-// as long as this notice is preserved.\r
-//\r
-// This code is provided with ABSOLUTELY NO WARRANTY.\r
-//\r
-\r
-#ifndef __STDINT_H\r
-#define __STDINT_H\r
-\r
-#ifdef _MSC_VER\r
-\r
-typedef __int8  int8_t;
-typedef __int16 int16_t;
-typedef __int32 int32_t;
-typedef __int64 int64_t;
-
-typedef unsigned __int8  uint8_t;
-typedef unsigned __int16 uint16_t;
-typedef unsigned __int32 uint32_t;
-typedef unsigned __int64 uint64_t;\r
-\r
-#else\r
-\r
-typedef signed char int8_t;\r
-typedef signed short int16_t;\r
-typedef signed int int32_t;\r
-typedef signed __int64 int64_t;\r
-\r
-typedef unsigned char uint8_t;\r
-typedef unsigned short uint16_t;\r
-typedef unsigned int uint32_t;\r
-typedef unsigned __int64 uint64_t;\r
-\r
-#endif\r
-\r
-#define intptr_t int32_t\r
-#define uintptr_t uint32_t\r
-\r
-#endif\r