diff options
Diffstat (limited to 'newlib/libc/sys/linux/getpwent.c')
-rw-r--r-- | newlib/libc/sys/linux/getpwent.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/newlib/libc/sys/linux/getpwent.c b/newlib/libc/sys/linux/getpwent.c index adf607e..5a60cbc 100644 --- a/newlib/libc/sys/linux/getpwent.c +++ b/newlib/libc/sys/linux/getpwent.c @@ -3,8 +3,7 @@ #include <pwd.h> struct passwd * -_DEFUN (getpwnam, (name), - const char *name) +getpwnam (const char *name) { errno = ENOSYS; return NULL; @@ -12,8 +11,7 @@ _DEFUN (getpwnam, (name), /* FIXME: dummy stub for now. */ struct passwd * -_DEFUN (getpwuid, (uid), - uid_t uid) +getpwuid (uid_t uid) { errno = ENOSYS; return NULL; @@ -21,8 +19,7 @@ _DEFUN (getpwuid, (uid), /* FIXME: dummy stub for now. */ struct passwd * -_DEFUN (getpwent, (uid), - uid_t uid) +getpwent (uid_t uid) { errno = ENOSYS; return NULL; |