4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-24 16:07:19 +08:00

28 lines
371 B
C
Raw Normal View History

/* 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;
}