diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-18 22:32:45 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-18 22:32:45 +0000 |
commit | 7cfecc4b36c5bd6e1e85fe8851ebd90fe1edb8f4 (patch) | |
tree | 2d03681bc35891414026aa56eeed0fbc29530124 /libbb/xfuncs.c | |
parent | c8e6e35ba4095846121d5b5a3eee57caa5e8e0fb (diff) | |
download | busybox-w32-7cfecc4b36c5bd6e1e85fe8851ebd90fe1edb8f4.tar.gz busybox-w32-7cfecc4b36c5bd6e1e85fe8851ebd90fe1edb8f4.tar.bz2 busybox-w32-7cfecc4b36c5bd6e1e85fe8851ebd90fe1edb8f4.zip |
xfuncs.c: dietlibc actually HAS fdprintf!
platform.h: define strchrnul for dietlibc
ash: stop using few non-standard functions
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 4 |
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... */ |
415 | int dprintf(int fd, const char *format, ...) | 415 | int fdprintf(int fd, const char *format, ...) |
416 | { | 416 | { |
417 | va_list p; | 417 | va_list p; |
418 | int r; | 418 | int r; |