diff options
author | Andreas Jaeger <jaegerandi@gmail.com> | 2012-05-21 21:02:33 +0200 |
---|---|---|
committer | Andreas Jaeger <jaegerandi@gmail.com> | 2012-05-21 21:02:33 +0200 |
commit | 662742187c77452c38cddababa92285cb62dbc28 (patch) | |
tree | cbd9497e91f0e091a7e103735498d0d09880b75c /malloc | |
parent | 61f65140eb0fe350ef59aca95b89d784e30f24af (diff) | |
download | glibc-662742187c77452c38cddababa92285cb62dbc28.tar glibc-662742187c77452c38cddababa92285cb62dbc28.tar.gz glibc-662742187c77452c38cddababa92285cb62dbc28.tar.bz2 glibc-662742187c77452c38cddababa92285cb62dbc28.zip |
Fix last change
Include shlib-compat.h for SHLIB_COMPAT.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/malloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
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> |