1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-13 12:55:01 -05:00
hexchat/src/common/typedef.h
2012-10-21 04:41:59 +02:00

12 lines
187 B
C

#ifndef SSIZE_T_DEFINED
#ifdef ssize_t
#undef ssize_t
#endif
#ifdef _WIN64
typedef __int64 ssize_t;
#else
typedef _W64 int ssize_t;
#endif
#define SSIZE_T_DEFINED
#endif