From 0bf23d9b2055223c6e7a1398d2243a65dfa4c30d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 15 Nov 2002 22:37:18 +0000 Subject: WinCE patches --- apps/s_server.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/s_server.c') diff --git a/apps/s_server.c b/apps/s_server.c index 64ef2455bc..4d87567a62 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -149,6 +149,14 @@ typedef unsigned int u_int; #include #endif +#ifdef OPENSSL_SYS_WINCE +/* Windows CE incorrectly defines fileno as returning void*, so to avoid problems below... */ +#ifdef fileno +#undef fileno +#endif +#define fileno(a) (int)_fileno(a) +#endif + #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000) /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */ #undef FIONBIO -- cgit v1.2.3