URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [getpwent.c] - Rev 438
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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; }
Go to most recent revision | Compare with Previous | Blame | View Log