From 42189a7dda8d0c4ea4f1cb8f20c43a5328c871cc Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 12 May 2005 14:58:33 +0000 Subject: [PATCH] ssize_t not necessary anymore for MinGW. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1738 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/port.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sc2/src/port.h b/sc2/src/port.h index 01cc995b5..69cbbcbae 100644 --- a/sc2/src/port.h +++ b/sc2/src/port.h @@ -59,10 +59,8 @@ int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result); #endif // Some types -#ifdef WIN32 -typedef int ssize_t; -#endif #ifdef _MSC_VER +typedef int ssize_t; typedef unsigned short mode_t; #endif