Index: third_party/c99/include/inttypes.h |
diff --git a/third_party/c99/include/inttypes.h b/third_party/c99/include/inttypes.h |
deleted file mode 100644 |
index 43f2034a5d0c3402c45b96a88869b777facaee04..0000000000000000000000000000000000000000 |
--- a/third_party/c99/include/inttypes.h |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// |
-// Posix integer types, defined in terms of native Windows types. |
- |
-#ifndef __INTTYPES_H_ |
-#define __INTTYPES_H_ |
- |
-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; |
-typedef uint8_t u_int8_t; |
-typedef uint16_t u_int16_t; |
-typedef uint32_t u_int32_t; |
-typedef uint64_t u_int64_t; |
- |
-#endif // __INTTYPES_H_ |