For OpenVMS, use inttypes.h instead of stdint.h

This commit is contained in:
Richard Levitte 2012-03-01 21:29:16 +00:00
parent 8e8b247341
commit 70505bc334
3 changed files with 15 additions and 0 deletions

View File

@ -28,7 +28,12 @@
#include <openssl/opensslconf.h> #include <openssl/opensslconf.h>
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
#ifndef OPENSSL_SYS_VMS
#include <stdint.h> #include <stdint.h>
#else
#include <inttypes.h>
#endif
#include <string.h> #include <string.h>
#include <openssl/err.h> #include <openssl/err.h>
#include "ec_lcl.h" #include "ec_lcl.h"

View File

@ -29,7 +29,12 @@
#include <openssl/opensslconf.h> #include <openssl/opensslconf.h>
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
#ifndef OPENSSL_SYS_VMS
#include <stdint.h> #include <stdint.h>
#else
#include <inttypes.h>
#endif
#include <string.h> #include <string.h>
#include <openssl/err.h> #include <openssl/err.h>
#include "ec_lcl.h" #include "ec_lcl.h"

View File

@ -29,7 +29,12 @@
#include <openssl/opensslconf.h> #include <openssl/opensslconf.h>
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128 #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
#ifndef OPENSSL_SYS_VMS
#include <stdint.h> #include <stdint.h>
#else
#include <inttypes.h>
#endif
#include <string.h> #include <string.h>
#include <openssl/err.h> #include <openssl/err.h>
#include "ec_lcl.h" #include "ec_lcl.h"