From: Richard Levitte Date: Wed, 21 Nov 2001 13:26:57 +0000 (+0000) Subject: inttypes.h apparently doesn't exist with VC++. Therefore, use the X-Git-Tag: OpenSSL-engine-0_9_6c~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=595241e17f16bc77e08bee4fe82aaa2e840bc82b;p=oweals%2Fopenssl.git inttypes.h apparently doesn't exist with VC++. Therefore, use the built-in types __int8, __int16 and so on on that platform. --- diff --git a/crypto/engine/vendor_defns/aep.h b/crypto/engine/vendor_defns/aep.h index 55dacccffb..09bcc87fed 100644 --- a/crypto/engine/vendor_defns/aep.h +++ b/crypto/engine/vendor_defns/aep.h @@ -9,7 +9,14 @@ * */ +#ifdef WIN32 +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int64 uint64_t; +#else #include +#endif /*Successful return value*/ #define AEP_R_OK 0x00000000