aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-24 22:02:01 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-24 22:02:01 +0000
commit218f2f4882482e1d023ddbf4b9f6cbf1f6b0145d (patch)
treee58717abf91e17db281fbbdfdc0072c198ce85b7 /libbb
parent84d2d493b4b664d1465cff955367fb9bc7769e5d (diff)
downloadbusybox-w32-218f2f4882482e1d023ddbf4b9f6cbf1f6b0145d.tar.gz
busybox-w32-218f2f4882482e1d023ddbf4b9f6cbf1f6b0145d.tar.bz2
busybox-w32-218f2f4882482e1d023ddbf4b9f6cbf1f6b0145d.zip
accumulated post-1.4.0 fixes
Diffstat (limited to 'libbb')
-rw-r--r--libbb/vdprintf.c4
-rw-r--r--libbb/xfuncs.c7
-rw-r--r--libbb/xreadlink.c2
3 files changed, 5 insertions, 8 deletions
diff --git a/libbb/vdprintf.c b/libbb/vdprintf.c
index ea2a9d4bf..d16c51947 100644
--- a/libbb/vdprintf.c
+++ b/libbb/vdprintf.c
@@ -7,12 +7,8 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <stdio.h>
11#include <unistd.h>
12#include "libbb.h" 10#include "libbb.h"
13 11
14
15
16#if defined(__GLIBC__) && __GLIBC__ < 2 12#if defined(__GLIBC__) && __GLIBC__ < 2
17int vdprintf(int d, const char *format, va_list ap) 13int vdprintf(int d, const char *format, va_list ap)
18{ 14{
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 4252e7646..f6b904f78 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -81,13 +81,14 @@ char * xstrndup(const char *s, int n)
81 t = (char*) s; 81 t = (char*) s;
82 while (m) { 82 while (m) {
83 if (!*t) break; 83 if (!*t) break;
84 m--; t++; 84 m--;
85 t++;
85 } 86 }
86 n = n - m; 87 n -= m;
87 t = xmalloc(n + 1); 88 t = xmalloc(n + 1);
88 t[n] = '\0'; 89 t[n] = '\0';
89 90
90 return memcpy(t,s,n); 91 return memcpy(t, s, n);
91} 92}
92 93
93// Die if we can't open a file and return a FILE * to it. 94// Die if we can't open a file and return a FILE * to it.
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