Retro68/gcc/newlib/libc/sys/linux/getpwent.c

28 lines
371 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* FIXME: dummy stub for now. */
#include <errno.h>
#include <pwd.h>
struct passwd *
2018-12-28 15:30:48 +00:00
getpwnam (const char *name)
2017-04-11 21:13:36 +00:00
{
errno = ENOSYS;
return NULL;
}
/* FIXME: dummy stub for now. */
struct passwd *
2018-12-28 15:30:48 +00:00
getpwuid (uid_t uid)
2017-04-11 21:13:36 +00:00
{
errno = ENOSYS;
return NULL;
}
/* FIXME: dummy stub for now. */
struct passwd *
2018-12-28 15:30:48 +00:00
getpwent (uid_t uid)
2017-04-11 21:13:36 +00:00
{
errno = ENOSYS;
return NULL;
}