aboutsummaryrefslogtreecommitdiff
path: root/src/nse
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/nse
parent40482e0644d61ffeb7779baec68bbd3a9cfba7f4 (diff)
downloadgnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.tar.gz
gnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.zip
check for __GLIBC__ before mallopting
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/gnunet-service-nse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nse/gnunet-service-nse.c b/src/nse/gnunet-service-nse.c
index 31d05690a..513eeb53e 100644
--- a/src/nse/gnunet-service-nse.c
+++ b/src/nse/gnunet-service-nse.c
@@ -1629,7 +1629,7 @@ main (int argc,
1629} 1629}
1630 1630
1631 1631
1632#ifdef LINUX 1632#if defined(LINUX) && defined(__GLIBC__)
1633#include <malloc.h> 1633#include <malloc.h>
1634 1634
1635/** 1635/**