diff options
Diffstat (limited to 'src/libstdcrypto/md5-internal.h')
-rw-r--r-- | src/libstdcrypto/md5-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstdcrypto/md5-internal.h b/src/libstdcrypto/md5-internal.h index 374528a..59ffeea 100644 --- a/src/libstdcrypto/md5-internal.h +++ b/src/libstdcrypto/md5-internal.h @@ -3,9 +3,9 @@ #ifndef MD5_INTERNAL_H #define MD5_INTERNAL_H -#include <skalibs/uint32.h> +#include <stdint.h> #include <skalibs/md5.h> -extern void md5_transform (uint32 * /* 4 uint32s */, uint32 const * /* 16 uint32s */) ; +extern void md5_transform (uint32_t * /* 4 uint32s */, uint32_t const * /* 16 uint32s */) ; #endif |