diff options
Diffstat (limited to 'libc/stdio/getline.c')
| -rw-r--r-- | libc/stdio/getline.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/libc/stdio/getline.c b/libc/stdio/getline.c index aef3de944..22b67b831 100644 --- a/libc/stdio/getline.c +++ b/libc/stdio/getline.c @@ -5,6 +5,9 @@   * Dedicated to Toni.  See uClibc/DEDICATION.mjn3 for details.   */ +#include <features.h> + +#ifdef __USE_GNU  #include "_stdio.h"  libc_hidden_proto(getline) @@ -17,3 +20,4 @@ ssize_t getline(char **__restrict lineptr, size_t *__restrict n,  	return getdelim(lineptr, n, '\n', stream);  }  libc_hidden_def(getline) +#endif | 
