Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/getpwent.c')
-rw-r--r--newlib/libc/sys/linux/getpwent.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/newlib/libc/sys/linux/getpwent.c b/newlib/libc/sys/linux/getpwent.c
index adf607e02..5a60cbc53 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;