4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-14 17:59:28 +08:00

31 lines
421 B
C
Raw Normal View History

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