diff options
author | Mike Frysinger | 2013-03-12 11:14:24 -0400 |
---|---|---|
committer | Mike Frysinger | 2013-03-12 11:14:24 -0400 |
commit | af9e70b8cba23b17c554533c3cdab0b66e7015e8 (patch) | |
tree | 0ff8eb82e65cc602fb767d1adc2cdcae18d830e5 /libbb/xreadlink.c | |
parent | 445e7543e80d629173d96a77fbfe228fe795cb88 (diff) | |
download | busybox-af9e70b8cba23b17c554533c3cdab0b66e7015e8.zip busybox-af9e70b8cba23b17c554533c3cdab0b66e7015e8.tar.gz |
readlink: uClibc supports automatic allocation too now
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libbb/xreadlink.c')
-rw-r--r-- | libbb/xreadlink.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c index ec95af2..0bdf394 100644 --- a/libbb/xreadlink.c +++ b/libbb/xreadlink.c @@ -102,7 +102,8 @@ char* FAST_FUNC xmalloc_readlink_or_warn(const char *path) char* FAST_FUNC xmalloc_realpath(const char *path) { -#if defined(__GLIBC__) && !defined(__UCLIBC__) +#if defined(__GLIBC__) || \ + (defined(__UCLIBC__) && UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 31)) /* glibc provides a non-standard extension */ /* new: POSIX.1-2008 specifies this behavior as well */ return realpath(path, NULL); |