projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6d14d2
)
inttypes.h apparently doesn't exist with VC++. Therefore, use the
author
Richard Levitte
<levitte@openssl.org>
Wed, 21 Nov 2001 13:26:57 +0000
(13:26 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 21 Nov 2001 13:26:57 +0000
(13:26 +0000)
built-in types __int8, __int16 and so on on that platform.
crypto/engine/vendor_defns/aep.h
patch
|
blob
|
history
diff --git
a/crypto/engine/vendor_defns/aep.h
b/crypto/engine/vendor_defns/aep.h
index 55dacccffbe95f34c1fadcf4020e9f76181b890a..09bcc87fed3170f7195c8dc5eb8123c900ed8da6 100644
(file)
--- 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 <inttypes.h>
+#endif
/*Successful return value*/
#define AEP_R_OK 0x00000000