math: fix two fma issues (only affects non-nearest rounding mode, x86)
[musl] / src / stdio / getline.c
1 #include <stdio.h>
2
3 ssize_t getline(char **restrict s, size_t *restrict n, FILE *restrict f)
4 {
5         return getdelim(s, n, '\n', f);
6 }