add put*ent functions for passwd/group files and similar for shadow
[musl] / src / passwd / fgetspent.c
diff --git a/src/passwd/fgetspent.c b/src/passwd/fgetspent.c
new file mode 100644 (file)
index 0000000..a9a3c97
--- /dev/null
@@ -0,0 +1,11 @@
+#include "pwf.h"
+
+struct spwd *fgetspent(FILE *f)
+{
+       return 0;
+}
+
+int putspent(const struct spwd *sp, FILE *f)
+{
+       return -1;
+}