diff options
Diffstat (limited to 'newlib/libc/stdio/getline.c')
-rw-r--r-- | newlib/libc/stdio/getline.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdio/getline.c b/newlib/libc/stdio/getline.c index b212a8c..857e980 100644 --- a/newlib/libc/stdio/getline.c +++ b/newlib/libc/stdio/getline.c @@ -37,8 +37,7 @@ No supporting OS subroutines are directly required. extern ssize_t _EXFUN(__getdelim, (char **, size_t *, int, FILE *)); ssize_t -_DEFUN(__getline, (lptr, n, fp), - char **lptr, +__getline (char **lptr, size_t *n, FILE *fp) { |