aboutsummaryrefslogtreecommitdiff
path: root/src/regex
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/regex
parent40482e0644d61ffeb7779baec68bbd3a9cfba7f4 (diff)
downloadgnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.tar.gz
gnunet-f7f68f4f3fec39f1e2c159d67a31b29ba503c774.zip
check for __GLIBC__ before mallopting
Diffstat (limited to 'src/regex')
-rw-r--r--src/regex/gnunet-daemon-regexprofiler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex/gnunet-daemon-regexprofiler.c b/src/regex/gnunet-daemon-regexprofiler.c
index 449f692c1..5aa18726d 100644
--- a/src/regex/gnunet-daemon-regexprofiler.c
+++ b/src/regex/gnunet-daemon-regexprofiler.c
@@ -382,7 +382,7 @@ main (int argc, char *const *argv)
382} 382}
383 383
384 384
385#ifdef LINUX 385#if defined(LINUX) && defined(__GLIBC__)
386#include <malloc.h> 386#include <malloc.h>
387 387
388/** 388/**