aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-10 17:18:44 +0200
committerMattias Andrée <maandree@kth.se>2020-06-10 17:18:44 +0200
commitee6db9ffe56cdcdc8da4515c8808bd1d247a4e9f (patch)
tree754d1ae5cf0124c9f1732442c46ee878f51fb038 /common.h
parentMerge pull request #12 from hackmod/win32 (diff)
downloadlibkeccak-ee6db9ffe56cdcdc8da4515c8808bd1d247a4e9f.tar.gz
libkeccak-ee6db9ffe56cdcdc8da4515c8808bd1d247a4e9f.tar.bz2
libkeccak-ee6db9ffe56cdcdc8da4515c8808bd1d247a4e9f.tar.xz
Style fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.h')
-rw-r--r--common.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common.h b/common.h
index 3062c14..bf605f5 100644
--- a/common.h
+++ b/common.h
@@ -4,12 +4,12 @@
#include <sys/stat.h>
#if defined(__GLIBC__) || defined(__sun) || defined(__CYGWIN__)
-#include <alloca.h>
+# include <alloca.h>
#elif defined(_WIN32)
-#include <malloc.h>
-#if !defined(alloca)
-#define alloca _alloca // for clang with MS Codegen
-#endif
+# include <malloc.h>
+# if !defined(alloca)
+# define alloca _alloca /* For clang with MS Codegen */
+# endif
#endif
#include <errno.h>
#include <unistd.h>