PalmOS headers have ssize_t with no sign of it so we have to assume they are always there. Missed semicolon.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-02-24 10:43:27 +00:00
parent 6aa0103384
commit f1b1ecf020

View File

@ -933,11 +933,14 @@ inline void *wxUIntToPtr(wxUIntPtr p)
#define HAVE_SSIZE_T
#endif
#endif
#if defined(__PALMOS__) && !defined(HAVE_SSIZE_T)
#define HAVE_SSIZE_T
#endif
#ifndef HAVE_SSIZE_T
#if SIZEOF_SIZE_T == 4
typedef wxInt32 ssize_t;
#elif SIZEOF_SIZE_T == 8
typedef wxInt64 ssize_t
typedef wxInt64 ssize_t;
#else
#error "error defining ssize_t, size_t is not 4 or 8 bytes"
#endif