aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-10 17:14:39 +0200
committerGitHub <noreply@github.com>2020-06-10 17:14:39 +0200
commit3d72bb0e3fda83cf6577ea9cf2f890f3fd8737c5 (patch)
tree3ef7c38d45b150b4005391907815c9ff2eb75586 /common.h
parentDeprecate libkeccak_{state,hmac}_{unmarshal_skip,marshal_size} and replace with the functions without the _skip or _size suffix (diff)
parentsupport WIN32 (diff)
downloadlibkeccak-3d72bb0e3fda83cf6577ea9cf2f890f3fd8737c5.tar.gz
libkeccak-3d72bb0e3fda83cf6577ea9cf2f890f3fd8737c5.tar.bz2
libkeccak-3d72bb0e3fda83cf6577ea9cf2f890f3fd8737c5.tar.xz
Merge pull request #12 from hackmod/win32
minimal WIN32 support added
Diffstat (limited to 'common.h')
-rw-r--r--common.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/common.h b/common.h
index e5d9014..3062c14 100644
--- a/common.h
+++ b/common.h
@@ -3,7 +3,14 @@
#include <sys/stat.h>
+#if defined(__GLIBC__) || defined(__sun) || defined(__CYGWIN__)
#include <alloca.h>
+#elif defined(_WIN32)
+#include <malloc.h>
+#if !defined(alloca)
+#define alloca _alloca // for clang with MS Codegen
+#endif
+#endif
#include <errno.h>
#include <unistd.h>