aboutsummaryrefslogtreecommitdiff
path: root/libbb/xreadlink.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-24 22:02:01 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-24 22:02:01 +0000
commite1c0161915fe4b07e94a0d96a24784455d1ca9ba (patch)
treee58717abf91e17db281fbbdfdc0072c198ce85b7 /libbb/xreadlink.c
parentcd97fcadfe7e4c797b574329b1afbef657216abf (diff)
downloadbusybox-w32-e1c0161915fe4b07e94a0d96a24784455d1ca9ba.tar.gz
busybox-w32-e1c0161915fe4b07e94a0d96a24784455d1ca9ba.tar.bz2
busybox-w32-e1c0161915fe4b07e94a0d96a24784455d1ca9ba.zip
accumulated post-1.4.0 fixes
git-svn-id: svn://busybox.net/trunk/busybox@17508 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/xreadlink.c')
-rw-r--r--libbb/xreadlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c
index 76f52ca06..fb67cdef1 100644
--- a/libbb/xreadlink.c
+++ b/libbb/xreadlink.c
@@ -36,7 +36,7 @@ char *xreadlink(const char *path)
36 36
37char *xmalloc_realpath(const char *path) 37char *xmalloc_realpath(const char *path)
38{ 38{
39#ifdef __GLIBC__ 39#if defined(__GLIBC__) && !defined(__UCLIBC__)
40 /* glibc provides a non-standard extension */ 40 /* glibc provides a non-standard extension */
41 return realpath(path, NULL); 41 return realpath(path, NULL);
42#else 42#else