summaryrefslogtreecommitdiff
path: root/e_os.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-03-11 01:29:14 +0000
committerBodo Möller <bodo@openssl.org>2000-03-11 01:29:14 +0000
commit4a56f7493c883ea220c47a0c394cec4eff498af1 (patch)
tree61f4413b2a9b2e52422690a9f0ec310d76bb5803 /e_os.h
parentf95808e8a5dde9699a852c0376508f5472fff8c6 (diff)
downloadopenssl-new-4a56f7493c883ea220c47a0c394cec4eff498af1.tar.gz
On NeXT, ssize_t is int, not long (see <sys/types.h> -- the definition
is activated only when _POSIX_SOURCE is defined).
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/e_os.h b/e_os.h
index 869a63dccf..7f5f62d113 100644
--- a/e_os.h
+++ b/e_os.h
@@ -271,8 +271,10 @@ extern "C" {
# include <sys/types.h>
# endif
# ifdef NeXT
-# define pid_t int /* pid_t is missing on NEXTSTEP/OPENSTEP */
-# define ssize_t long
+# define pid_t int /* pid_t is missing on NEXTSTEP/OPENSTEP
+ * (unless when compiling with -D_POSIX_SOURCE,
+ * which doesn't work for us) */
+# define ssize_t int /* ditto */
# endif
# define OPENSSL_CONF "openssl.cnf"