summaryrefslogtreecommitdiff
path: root/libc/stdio/getline.c
blob: 943526abe6b7b9a752fb9f01996cf00dab9f1219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Copyright (C) 2004       Manuel Novoa III    <mjn3@codepoet.org>
 *
 * GNU Library General Public License (LGPL) version 2 or later.
 *
 * Dedicated to Toni.  See uClibc/DEDICATION.mjn3 for details.
 */

#define getdelim __getdelim

#include "_stdio.h"

ssize_t attribute_hidden __getline(char **__restrict lineptr, size_t *__restrict n,
				FILE *__restrict stream)
{
	return getdelim(lineptr, n, '\n', stream);
}
strong_alias(__getline,getline)