From 56e5d28c812ad3851c02d20df93cd6f00ada64bb Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 10 Aug 2000 19:47:55 +0000 Subject: More stuff. Down to only 43 missing functions before BusyBox will link. Fixed socket stuff so it doesn't pull in kernel headers and stubbed out fork and clone. A few other header file cleanups. -Erik --- include/stdio.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/stdio.h') diff --git a/include/stdio.h b/include/stdio.h index e807262f0..5f944f1f7 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -201,6 +201,10 @@ extern int vfscanf __P ((FILE *__restrict __s, /* Print a message describing the meaning of the value of errno. */ extern void perror __P ((__const char *__s)); +/* Like `getdelim', but reads up to a newline. */ +extern int getline __P ((char **__restrict __lineptr, + size_t *__restrict __n, + FILE *__restrict __stream)); #endif /* __STDIO_H */ -- cgit v1.2.3