aboutsummaryrefslogtreecommitdiff
path: root/src/revocation
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-16 13:25:06 +0000
committerChristian Grothoff <christian@grothoff.org>2015-06-16 13:25:06 +0000
commitf7f68f4f3fec39f1e2c159d67a31b29ba503c774 (patch)
tree2719767e08663725e1a679eb8e97590c0bde2938 /src/revocation
parent40482e0644d61ffeb7779baec68bbd3a9cfba7f4 (diff)
downloadgnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.tar.gz
gnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.zip
check for __GLIBC__ before mallopting
Diffstat (limited to 'src/revocation')
-rw-r--r--src/revocation/gnunet-service-revocation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/revocation/gnunet-service-revocation.c b/src/revocation/gnunet-service-revocation.c
index 8a5293636..333284b48 100644
--- a/src/revocation/gnunet-service-revocation.c
+++ b/src/revocation/gnunet-service-revocation.c
@@ -933,7 +933,7 @@ main (int argc,
933} 933}
934 934
935 935
936#ifdef LINUX 936#if defined(LINUX) && defined(__GLIBC__)
937#include <malloc.h> 937#include <malloc.h>
938 938
939 939