oops - remove extranseous SAYMBOL_REF_FLAG usage from -mlong-calls patch
[official-gcc.git] / libio / stdio / getline.c
blob6f4b677086e82d413fe514e3d088086aa39c551f
1 #include "libioP.h"
2 #include "stdio.h"
4 /* NOTE: This geline function is different from _IO_getline. */
6 _IO_ssize_t
7 getline (lineptr, linelen, fp)
8 char** lineptr;
9 size_t* linelen;
10 FILE* fp;
12 return _IO_getdelim (lineptr, linelen, '\n', fp);