diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-18 22:10:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-18 22:10:24 +0000 |
commit | c8e6e35ba4095846121d5b5a3eee57caa5e8e0fb (patch) | |
tree | d310542c65bbfd183b50f156916ef3313721625f /include | |
parent | 83e5d6f77237b64853c194b0ce592e77ef677c4d (diff) | |
download | busybox-c8e6e35ba4095846121d5b5a3eee57caa5e8e0fb.tar.gz |
nc: add missing cast
xfuncs: add dprintf for dietlibc
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index a1ec17a7b..860143f7f 100644 --- a/include/platform.h +++ b/include/platform.h @@ -194,6 +194,9 @@ typedef unsigned long long int uintmax_t; * libbb. This would require a platform.c. It's not going to be cleaned * out of the tree, so stop saying it should be. */ #define fdprintf dprintf +#ifdef __dietlibc__ +int dprintf(int fd, const char *format, ...); +#endif /* Don't use lchown with glibc older than 2.1.x ... uC-libc lacks it */ #if (defined __GLIBC__ && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1) || \ |