Indent.
[gnulib.git] / lib / getline.h
1 #ifndef _getline_h_
2 #define _getline_h_ 1
3
4 #include <stdio.h>
5
6 #ifndef __P
7 # if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
8 #  define __P(args) args
9 # else
10 #  define __P(args) ()
11 # endif  /* GCC.  */
12 #endif  /* Not __P.  */
13
14 int
15   getline __P ((char **_lineptr, size_t *_n, FILE *_stream));
16
17 #endif /* _getline_h_ */