math: fix two fma issues (only affects non-nearest rounding mode, x86)
[musl] / src / passwd / fgetspent.c
1 #include "pwf.h"
2
3 struct spwd *fgetspent(FILE *f)
4 {
5         return 0;
6 }
7
8 int putspent(const struct spwd *sp, FILE *f)
9 {
10         return -1;
11 }