1
0
mirror of https://github.com/BLAKE2/libb2 synced 2024-11-26 13:03:50 +01:00

Merge pull request #19 from dcarlier-afilias/win_fix

windows build fix
This commit is contained in:
Samuel Neves 2018-06-04 17:14:59 +01:00 committed by GitHub
commit 9b1cc68593
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -14,6 +14,10 @@
#ifndef __BLAKE2_IMPL_H__ #ifndef __BLAKE2_IMPL_H__
#define __BLAKE2_IMPL_H__ #define __BLAKE2_IMPL_H__
#if defined(_WIN32) || defined(WIN32)
#include <windows.h>
#endif
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>