OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / stdio / getline.c
1 /* Copyright (C) 2004       Manuel Novoa III    <mjn3@codepoet.org>
2  *
3  * GNU Library General Public License (LGPL) version 2 or later.
4  *
5  * Dedicated to Toni.  See uClibc/DEDICATION.mjn3 for details.
6  */
7
8 #include "_stdio.h"
9
10 libc_hidden_proto(getdelim)
11
12 ssize_t getline(char **__restrict lineptr, size_t *__restrict n,
13                                 FILE *__restrict stream)
14 {
15         return getdelim(lineptr, n, '\n', stream);
16 }
17 libc_hidden_proto(getline)
18 libc_hidden_def(getline)