diff options
Diffstat (limited to 'libc-top-half/musl/src/passwd/getspent.c')
-rw-r--r-- | libc-top-half/musl/src/passwd/getspent.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/passwd/getspent.c b/libc-top-half/musl/src/passwd/getspent.c new file mode 100644 index 0000000..8574a48 --- /dev/null +++ b/libc-top-half/musl/src/passwd/getspent.c @@ -0,0 +1,14 @@ +#include "pwf.h" + +void setspent() +{ +} + +void endspent() +{ +} + +struct spwd *getspent() +{ + return 0; +} |