Commit 5ff6366d authored by Filippo Della Betta's avatar Filippo Della Betta Committed by Youness Alaoui

Included the replacement header win32_common.h instead of the missing header...

Included the replacement header win32_common.h instead of the missing header stdint.h on WIN32 platform
parent ecc2dcc9
...@@ -15,7 +15,11 @@ ...@@ -15,7 +15,11 @@
#ifndef SHA1_H #ifndef SHA1_H
#define SHA1_H #define SHA1_H
#ifdef _WIN32
#include "win32_common.h"
#else
#include <stdint.h> #include <stdint.h>
#endif
#include <stddef.h> #include <stddef.h>
#define SHA1_MAC_LEN 20 #define SHA1_MAC_LEN 20
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment