aboutsummaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
commit56c31f14e31948366da595479dd9fc6f32cbbb5f (patch)
tree2728cbb296484026cb657f92f78e1bb0806ba6f4 /internal.h
parentdf6986a40984363be0005bcb8828f9e2ac222f9e (diff)
downloadbusybox-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.h3
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);
174extern long getNum (const char *cp); 175extern long getNum (const char *cp);
175extern pid_t findInitPid(); 176extern pid_t findInitPid();
176 177
177#if (__GLIBC__ < 2) && defined BB_SYSLOGD 178#if (__GLIBC__ < 2) && (defined BB_SYSLOGD || defined BB_INIT)
178extern int vdprintf(int d, const char *format, va_list ap); 179extern int vdprintf(int d, const char *format, va_list ap);
179#endif 180#endif
180 181