diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 18:19:02 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 18:19:02 +0000 |
commit | 56c31f14e31948366da595479dd9fc6f32cbbb5f (patch) | |
tree | 2728cbb296484026cb657f92f78e1bb0806ba6f4 /internal.h | |
parent | df6986a40984363be0005bcb8828f9e2ac222f9e (diff) | |
download | busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.gz busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.bz2 busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.zip |
* added (and documented) "-n" option for head -
contributed Friedrich Vedder <fwv@myrtle.lahn.de>
* Cleanup for a number of usage messages -- also
contributed Friedrich Vedder <fwv@myrtle.lahn.de>
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@336 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal.h b/internal.h index 2b07d672d..b77feabad 100644 --- a/internal.h +++ b/internal.h | |||
@@ -26,6 +26,7 @@ | |||
26 | #include "busybox.def.h" | 26 | #include "busybox.def.h" |
27 | 27 | ||
28 | #include <stdlib.h> | 28 | #include <stdlib.h> |
29 | #include <stdarg.h> | ||
29 | #include <string.h> | 30 | #include <string.h> |
30 | #include <unistd.h> | 31 | #include <unistd.h> |
31 | #include <sys/stat.h> | 32 | #include <sys/stat.h> |
@@ -174,7 +175,7 @@ extern int check_wildcard_match(const char* text, const char* pattern); | |||
174 | extern long getNum (const char *cp); | 175 | extern long getNum (const char *cp); |
175 | extern pid_t findInitPid(); | 176 | extern pid_t findInitPid(); |
176 | 177 | ||
177 | #if (__GLIBC__ < 2) && defined BB_SYSLOGD | 178 | #if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT) |
178 | extern int vdprintf(int d, const char *format, va_list ap); | 179 | extern int vdprintf(int d, const char *format, va_list ap); |
179 | #endif | 180 | #endif |
180 | 181 | ||