summaryrefslogtreecommitdiff
path: root/src/lib/sha3.c
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@ugent.be>2018-09-26 14:49:39 +0200
committerSander Vrijders <sander.vrijders@ugent.be>2018-09-27 09:26:26 +0200
commit51bb05f15b78fbfdf53417ec1d1c21e999c0e556 (patch)
treee01e39f12c28120defd9f0b363201ce9163a103a /src/lib/sha3.c
parenta0ea1751683d7fb242b9a8076b05058f21dfe052 (diff)
downloadouroboros-51bb05f15b78fbfdf53417ec1d1c21e999c0e556.tar.gz
ouroboros-51bb05f15b78fbfdf53417ec1d1c21e999c0e556.zip
include: Remove _DEFAULT_SOURCE in endian.h
This removes the _DEFAULT_SOURCE definition in the endian header as it should not be there. This avoids double and conflicting definitions. Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be> Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src/lib/sha3.c')
-rw-r--r--src/lib/sha3.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/sha3.c b/src/lib/sha3.c
index 6179af22..f6a82c57 100644
--- a/src/lib/sha3.c
+++ b/src/lib/sha3.c
@@ -42,6 +42,10 @@
* or FITNESS FOR A PARTICULAR PURPOSE. Use this program at your own risk!
*/
+#if defined(__linux__) || defined(__CYGWIN__)
+#define _DEFAULT_SOURCE
+#endif
+
#include <ouroboros/endian.h>
#include <ouroboros/sha3.h>