mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-16 22:35:11 -05:00
16 lines
251 B
C
16 lines
251 B
C
#include <sys/types.h>
|
|
|
|
#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
|
|
|
|
#define ENCHANT_VERSION_STRING "1.6.0"
|