4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-04 13:30:39 +08:00
Yaakov Selkowitz 0bda30e1ff ansification: remove _CONST
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:08 -06:00

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