1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-10 06:03:31 +02:00
Files
coreutils/lib/getline.h
Jim Meyering 3d6c17e94f Indent.
1995-11-15 15:04:51 +00:00

18 lines
328 B
C

#ifndef _getline_h_
#define _getline_h_ 1
#include <stdio.h>
#ifndef __P
# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
# define __P(args) args
# else
# define __P(args) ()
# endif /* GCC. */
#endif /* Not __P. */
int
getline __P ((char **_lineptr, size_t *_n, FILE *_stream));
#endif /* _getline_h_ */