summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <jaegerandi@gmail.com>2012-05-21 21:02:33 +0200
committerAndreas Jaeger <jaegerandi@gmail.com>2012-05-21 21:02:33 +0200
commit662742187c77452c38cddababa92285cb62dbc28 (patch)
treecbd9497e91f0e091a7e103735498d0d09880b75c
parent61f65140eb0fe350ef59aca95b89d784e30f24af (diff)
Fix last change
Include shlib-compat.h for SHLIB_COMPAT.
-rw-r--r--ChangeLog4
-rw-r--r--malloc/malloc.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ebc3c4f1c..3a3be3117d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-21 Andreas Jaeger <aj@suse.de>
+
+ * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
+
2012-05-21 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
diff --git a/malloc/malloc.c b/malloc/malloc.c
index c216d26e65..7115287b46 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -228,6 +228,8 @@
#include <stdio.h> /* needed for malloc_stats */
#include <errno.h>
+#include <shlib-compat.h>
+
/* For uintptr_t. */
#include <stdint.h>