diff options
Diffstat (limited to 'ext/standard/md5.h')
-rw-r--r-- | ext/standard/md5.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/md5.h b/ext/standard/md5.h index 7c882c5a3e..2747388a6f 100644 --- a/ext/standard/md5.h +++ b/ext/standard/md5.h @@ -42,10 +42,10 @@ PHP_NAMED_FUNCTION(php_if_md5_file); /* MD5 context. */ typedef struct { - php_uint32 lo, hi; - php_uint32 a, b, c, d; + uint32_t lo, hi; + uint32_t a, b, c, d; unsigned char buffer[64]; - php_uint32 block[16]; + uint32_t block[16]; } PHP_MD5_CTX; PHPAPI void PHP_MD5Init(PHP_MD5_CTX *ctx); |