summaryrefslogtreecommitdiff
path: root/src/libstdcrypto/sha256-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstdcrypto/sha256-internal.h')
-rw-r--r--src/libstdcrypto/sha256-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstdcrypto/sha256-internal.h b/src/libstdcrypto/sha256-internal.h
index e5bb974..a01d75c 100644
--- a/src/libstdcrypto/sha256-internal.h
+++ b/src/libstdcrypto/sha256-internal.h
@@ -3,10 +3,10 @@
#ifndef SHA256_INTERNAL_H
#define SHA256_INTERNAL_H
-#include <skalibs/uint32.h>
+#include <stdint.h>
#include <skalibs/sha256.h>
extern void sha256_feed (SHA256Schedule *, unsigned char) ;
-extern void sha256_transform (uint32 *, uint32 const *) ;
+extern void sha256_transform (uint32_t *, uint32_t const *) ;
#endif