From 222e025be3efe7af34fc115cbf0185bfe2ee39f5 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Thu, 9 Feb 2012 01:04:41 +0100 Subject: [PATCH] cec: include stdint.h in windows/os-types.h instead of typedef'ing ints --- src/lib/platform/windows/os-types.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/lib/platform/windows/os-types.h b/src/lib/platform/windows/os-types.h index 84edac9..9b0dca0 100644 --- a/src/lib/platform/windows/os-types.h +++ b/src/lib/platform/windows/os-types.h @@ -49,21 +49,13 @@ #include #include #include +#include typedef SOCKET tcp_socket_t; #define INVALID_SOCKET_VALUE INVALID_SOCKET typedef HANDLE serial_socket_t; #define INVALID_SERIAL_SOCKET_VALUE INVALID_HANDLE_VALUE -typedef signed __int8 int8_t; -typedef signed __int16 int16_t; -typedef signed __int32 int32_t; -typedef signed __int64 int64_t; -typedef unsigned __int8 uint8_t; -typedef unsigned __int16 uint16_t; -typedef unsigned __int32 uint32_t; -typedef unsigned __int64 uint64_t; - #ifndef _SSIZE_T_DEFINED #ifdef _WIN64 typedef __int64 ssize_t; -- 2.34.1