diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-18 21:49:06 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-18 21:49:06 +0000 |
commit | ee81790a7d43f1de60d34d9bc2f0ffb0130d56bf (patch) | |
tree | 84b352ca012bd713d990ef1d90b47777a6f6e2e7 /include/libbb.h | |
parent | 077bb4f5c627e94acc22a69a76a8ff8fbea4e49e (diff) | |
download | busybox-w32-ee81790a7d43f1de60d34d9bc2f0ffb0130d56bf.tar.gz busybox-w32-ee81790a7d43f1de60d34d9bc2f0ffb0130d56bf.tar.bz2 busybox-w32-ee81790a7d43f1de60d34d9bc2f0ffb0130d56bf.zip |
A bunch of defined(__GLIBC__) added. static-linking warning expanded
git-svn-id: svn://busybox.net/trunk/busybox@16996 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index fcd0dfa31..7dc7abd7f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -159,7 +159,7 @@ | |||
159 | #endif | 159 | #endif |
160 | 160 | ||
161 | 161 | ||
162 | #if (__GLIBC__ < 2) | 162 | #if defined(__GLIBC__) && __GLIBC__ < 2 |
163 | int vdprintf(int d, const char *format, va_list ap); | 163 | int vdprintf(int d, const char *format, va_list ap); |
164 | #endif | 164 | #endif |
165 | // This is declared here rather than #including <libgen.h> in order to avoid | 165 | // This is declared here rather than #including <libgen.h> in order to avoid |