From: Matthew Fernandez Date: Sun, 6 Mar 2022 00:11:09 +0000 (-0800) Subject: Windows unistd.h shim: remove stdint.h types X-Git-Tag: 4.0.0~191^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c068c77f3c1947fb2e5667a40a36f319764c79b;p=graphviz Windows unistd.h shim: remove stdint.h types MSVC, like every other C99 compliant platform, defines these in stdint.h. --- diff --git a/windows/include/unistd.h b/windows/include/unistd.h index e4aee9834..83e9d37fe 100644 --- a/windows/include/unistd.h +++ b/windows/include/unistd.h @@ -37,14 +37,5 @@ #define STDIN_FILENO 0 #define STDOUT_FILENO 1 #define STDERR_FILENO 2 -/* should be in some equivalent to */ -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; #endif /* unistd.h */