aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-18 22:32:45 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-12-18 22:32:45 +0000
commit3693ee3e722ac89fd4f01dbcf3ece7fc909b3799 (patch)
tree2d03681bc35891414026aa56eeed0fbc29530124 /libbb
parent89651f1e21a6dace38a259f4f63f560ad36de806 (diff)
downloadbusybox-w32-3693ee3e722ac89fd4f01dbcf3ece7fc909b3799.tar.gz
busybox-w32-3693ee3e722ac89fd4f01dbcf3ece7fc909b3799.tar.bz2
busybox-w32-3693ee3e722ac89fd4f01dbcf3ece7fc909b3799.zip
xfuncs.c: dietlibc actually HAS fdprintf!
platform.h: define strchrnul for dietlibc ash: stop using few non-standard functions git-svn-id: svn://busybox.net/trunk/busybox@16998 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 4790aa140..9efccc542 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -411,8 +411,8 @@ char *xasprintf(const char *format, ...)
411 return string_ptr; 411 return string_ptr;
412} 412}
413 413
414#ifdef __dietlibc__ 414#if 0 /* If we will ever meet a libc which hasn't [f]dprintf... */
415int dprintf(int fd, const char *format, ...) 415int fdprintf(int fd, const char *format, ...)
416{ 416{
417 va_list p; 417 va_list p;
418 int r; 418 int r;