diff options
author | Yang Tse <yangsita@gmail.com> | 2006-11-25 01:02:52 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-11-25 01:02:52 +0000 |
commit | a46f55b9de423b4084982467d6f28f69a64ab8f3 (patch) | |
tree | b7fff68dc4d7e9d68b267bc0918f96c3a9771e61 /src | |
parent | a634f644005cbe2b3dea2b84328d605ec3474054 (diff) |
Make sure RETSIGTYPE is properly defined
Diffstat (limited to 'src')
-rw-r--r-- | src/config-win32.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/config-win32.h b/src/config-win32.h index 523147d79..047f28e85 100644 --- a/src/config-win32.h +++ b/src/config-win32.h @@ -129,6 +129,28 @@ #define SEND_TYPE_RETV int /* ---------------------------------------------------------------- */ +/* TYPEDEF REPLACEMENTS */ +/* ---------------------------------------------------------------- */ + +/* Define this if in_addr_t is not an available 'typedefed' type */ +#define in_addr_t unsigned long + +/* Define as the return type of signal handlers (int or void). */ +#define RETSIGTYPE void + +#if (defined(__WATCOMC__) && (__WATCOMC__ >= 1240)) || defined(__POCC__) +#elif defined(_WIN64) +#define ssize_t __int64 +#else +#define ssize_t int +#endif + +/* Define to 'int' if socklen_t is not an available 'typedefed' type */ +#ifndef HAVE_WS2TCPIP_H +#define socklen_t int +#endif + +/* ---------------------------------------------------------------- */ /* STRUCT RELATED */ /* ---------------------------------------------------------------- */ |