diff options
author | Richard Levitte <levitte@openssl.org> | 2000-06-04 09:12:20 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-06-04 09:12:20 +0200 |
commit | 823d8a6eb1dfb18ce044c03f02780cf87b9d5b56 (patch) | |
tree | 16d857851771fb916a5bc5d47f91adb51ab77b10 /crypto | |
parent | Typo... (diff) | |
download | openssl-823d8a6eb1dfb18ce044c03f02780cf87b9d5b56.tar.xz openssl-823d8a6eb1dfb18ce044c03f02780cf87b9d5b56.zip |
According to Gordon Atwood <gordon@cs.ualberta.ca>, stdlib.h is
needed, or size_t won't be defined on SunOS 4.1.4.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/err/err.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/err/err.h b/crypto/err/err.h index 76a8ed1b38..519a9c5b09 100644 --- a/crypto/err/err.h +++ b/crypto/err/err.h @@ -61,6 +61,7 @@ #ifndef NO_FP_API #include <stdio.h> +#include <stdlib.h> #endif #ifdef __cplusplus |