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);