diff options
Diffstat (limited to 'pwd')
-rw-r--r-- | pwd/getpw.c | 9 | ||||
-rw-r--r-- | pwd/putpwent.c | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/pwd/getpw.c b/pwd/getpw.c index 5bd5c82..0bd2ab9 100644 --- a/pwd/getpw.c +++ b/pwd/getpw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <errno.h> #include <stdio.h> #include <pwd.h> @@ -26,13 +25,15 @@ Cambridge, MA 02139, USA. */ in the given buffer. This knows the format that the caller will expect, but this need not be the format of the password file. */ int -DEFUN(getpw, (uid, buf), __uid_t uid AND register char *buf) +getpw (uid, buf) + __uid_t uid; + register char *buf; { register struct passwd *p; if (buf == NULL) { - errno = EINVAL; + __set_errno (EINVAL); return -1; } diff --git a/pwd/putpwent.c b/pwd/putpwent.c index ad8a81b..2761cf8 100644 --- a/pwd/putpwent.c +++ b/pwd/putpwent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <errno.h> #include <stdio.h> #include <pwd.h> @@ -25,11 +24,13 @@ Cambridge, MA 02139, USA. */ /* Write an entry to the given stream. This must know the format of the password file. */ int -DEFUN(putpwent, (p, stream), register CONST struct passwd *p AND FILE *stream) +putpwent (p, stream) + register const struct passwd *p; + FILE *stream; { if (p == NULL || stream == NULL) { - errno = EINVAL; + __set_errno (EINVAL); return -1; } |