1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

- Moved from unsigned long to uint32_t throughout code

This commit is contained in:
Paul Bakker
2012-10-01 14:41:15 +00:00
parent 6adff7497a
commit 5c2364c2ba
34 changed files with 539 additions and 454 deletions

View File

@@ -61,12 +61,13 @@
*/
/**
* \def POLARSSL_HAVE_LONGLONG
* \def POLARSSL_HAVE_INT64
*
* The compiler supports the use of long long.
* The compiler supports the use of 64-bit types.
* Code automatically enables on known working systems.
*
* Uncomment if the compiler supports long long.
#define POLARSSL_HAVE_LONGLONG
* Uncomment if the compiler supports 64-bit data types.
#define POLARSSL_HAVE_INT64
*/
/**