From a825fe870332fe46a27053e47e23faa9fd239193 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 1 Sep 2016 08:56:06 +1000 Subject: [PATCH] md5_hash.h: Replace outdated use of c_types.h with stdint --- components/esp32/include/rom/md5_hash.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/esp32/include/rom/md5_hash.h b/components/esp32/include/rom/md5_hash.h index 612ee5992..f116f1e67 100755 --- a/components/esp32/include/rom/md5_hash.h +++ b/components/esp32/include/rom/md5_hash.h @@ -15,14 +15,16 @@ #ifndef _ROM_MD5_HASH_H_ #define _ROM_MD5_HASH_H_ +#include + #ifdef __cplusplus extern "C" { #endif struct MD5Context { - uint32 buf[4]; - uint32 bits[2]; - uint8 in[64]; + uint32_t buf[4]; + uint32_t bits[2]; + uint8_t in[64]; }; void MD5Init(struct MD5Context *context);