For OpenVMS, use inttypes.h instead of stdint.h
authorRichard Levitte <levitte@openssl.org>
Thu, 1 Mar 2012 21:29:16 +0000 (21:29 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 1 Mar 2012 21:29:16 +0000 (21:29 +0000)
crypto/ec/ecp_nistp224.c
crypto/ec/ecp_nistp256.c
crypto/ec/ecp_nistp521.c

index bf8021c6cfda6d265243f3aefab0411da79da8fb..b5ff56c2527762b78f322db5f4d1cb3dd0bb3ced 100644 (file)
 #include <openssl/opensslconf.h>
 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
 
+#ifndef OPENSSL_SYS_VMS
 #include <stdint.h>
+#else
+#include <inttypes.h>
+#endif
+
 #include <string.h>
 #include <openssl/err.h>
 #include "ec_lcl.h"
index aa125d35fceace328854a74ce772161213321d90..4bc0f5dce02212798671334e87444adaa80dd500 100644 (file)
 #include <openssl/opensslconf.h>
 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
 
+#ifndef OPENSSL_SYS_VMS
 #include <stdint.h>
+#else
+#include <inttypes.h>
+#endif
+
 #include <string.h>
 #include <openssl/err.h>
 #include "ec_lcl.h"
index 3c7ced394b308be252420ea31330ee27754020dc..178b655f7f177c7e5dd5a0dba7fe5db623bdc0ed 100644 (file)
 #include <openssl/opensslconf.h>
 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
 
+#ifndef OPENSSL_SYS_VMS
 #include <stdint.h>
+#else
+#include <inttypes.h>
+#endif
+
 #include <string.h>
 #include <openssl/err.h>
 #include "ec_lcl.h"