From: Richard Levitte Date: Thu, 12 Jun 2003 00:56:30 +0000 (+0000) Subject: Make sure ssize_t is defined on SunOS4. X-Git-Tag: OpenSSL_0_9_6k~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9f0d2f6b097c622c7177506e2966bd2c6134b90d;p=oweals%2Fopenssl.git Make sure ssize_t is defined on SunOS4. PR: 585 --- diff --git a/e_os.h b/e_os.h index 58df717722..a1c9337455 100644 --- a/e_os.h +++ b/e_os.h @@ -301,6 +301,8 @@ extern "C" { # define pid_t int /* pid_t is missing on NEXTSTEP/OPENSTEP * (unless when compiling with -D_POSIX_SOURCE, * which doesn't work for us) */ +# endif +# if defined(NeXT) || defined(OPENSSL_SYS_NEWS4) || defined(OPENSSL_SYS_SUNOS) # define ssize_t int /* ditto */ # endif # ifdef NEWS4 /* setvbuf is missing on mips-sony-bsd */