mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
13 lines
171 B
C
13 lines
171 B
C
|
/* FIXME: dummy stub for now. */
|
||
|
#include <errno.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
struct passwd *
|
||
|
_DEFUN (getpwnam, (name),
|
||
|
_CONST char *name)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return NULL;
|
||
|
}
|
||
|
|