mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
tweak for ms-windows
This commit is contained in:
parent
78ab878029
commit
19809ac46d
1 changed files with 7 additions and 0 deletions
|
@ -373,6 +373,13 @@ typedef time_tz tz_time_t;
|
|||
|
||||
#include <fcntl.h>
|
||||
|
||||
/* ms-windows lacks ssize_t but has SSIZE_T
|
||||
*/
|
||||
#if defined(_MSC_VER)
|
||||
#include
|
||||
typedef SSIZE_T ssize_t;
|
||||
#endif
|
||||
|
||||
#ifndef TZ_ABBR_MAX_LEN
|
||||
#define TZ_ABBR_MAX_LEN 16
|
||||
#endif /* !defined TZ_ABBR_MAX_LEN */
|
||||
|
|
Loading…
Reference in a new issue