diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-22 23:33:52 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-22 23:33:52 +0100 |
commit | abfc6a3a9bcc3391181940213ce840130a35f1cd (patch) | |
tree | ca0858bcf2d24c2031829000cc570259ff9ffa97 /e_os2.h | |
parent | make update (diff) | |
download | openssl-abfc6a3a9bcc3391181940213ce840130a35f1cd.tar.xz openssl-abfc6a3a9bcc3391181940213ce840130a35f1cd.zip |
To define OPENSSL_NO_FP_API for all MSDOS type targets was unfair
against DJGPP, and much more restricted than previous definitions.
Diffstat (limited to 'e_os2.h')
-rw-r--r-- | e_os2.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -200,8 +200,10 @@ extern "C" { /* Specials for I/O an exit */ -#ifdef OPENSSL_SYS_MSDOS +#ifdef OPENSSL_SYS_WIN16 # define OPENSSL_NO_FP_API +#endif +#ifdef OPENSSL_SYS_MSDOS # define OPENSSL_UNISTD_IO <io.h> # define OPENSSL_DECLARE_EXIT extern void exit(int); #else |