From 33e8e868d036fcc607c1da9b91c77944e33d87f1 Mon Sep 17 00:00:00 2001 From: wey Date: Wed, 6 Nov 2024 10:03:41 +0800 Subject: [PATCH] core: Remove redundant windows.h The windows.h header is not necessary for ssize_t definition on the Windows platform since BaseTsd.h already provides the required SSIZE_T type definition. Remove this redundant include to reduce compilation dependencies. Signed-off-by: wey --- include/rdma/fabric.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/rdma/fabric.h b/include/rdma/fabric.h index 366e6b0402b..42c50532797 100644 --- a/include/rdma/fabric.h +++ b/include/rdma/fabric.h @@ -65,7 +65,6 @@ #if defined(_WIN32) #include -#include typedef SSIZE_T ssize_t; #endif