1234567891011121314151617181920212223 |
- #include <features.h>
- #ifdef __USE_GNU
- #include "_stdio.h"
- ssize_t getline(char **__restrict lineptr, size_t *__restrict n,
- FILE *__restrict stream)
- {
- return getdelim(lineptr, n, '\n', stream);
- }
- libc_hidden_def(getline)
- #endif
|