Retro68/gcc/newlib/libc/sys/linux/getpwent.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

28 lines
371 B
C

/* FIXME: dummy stub for now. */
#include <errno.h>
#include <pwd.h>
struct passwd *
getpwnam (const char *name)
{
errno = ENOSYS;
return NULL;
}
/* FIXME: dummy stub for now. */
struct passwd *
getpwuid (uid_t uid)
{
errno = ENOSYS;
return NULL;
}
/* FIXME: dummy stub for now. */
struct passwd *
getpwent (uid_t uid)
{
errno = ENOSYS;
return NULL;
}