diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-30 17:41:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-30 17:41:35 +0000 |
commit | 1d863dc0b41da22b5a06110d67b47a0f102cb639 (patch) | |
tree | 3570b4ace8356ad2e0dd2ce8ab2edb900257203d /pwd | |
parent | c11f120913b8c6a6be67ddf3dc36a3d239f2f322 (diff) | |
download | glibc-1d863dc0b41da22b5a06110d67b47a0f102cb639.tar glibc-1d863dc0b41da22b5a06110d67b47a0f102cb639.tar.gz glibc-1d863dc0b41da22b5a06110d67b47a0f102cb639.tar.bz2 glibc-1d863dc0b41da22b5a06110d67b47a0f102cb639.zip |
Update.
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/gethostid.c: Handle failing call to
getxxbyYY_r functions correctly for non-existing entry.
* sunrpc/getrpcport.c: Likewise.
* sunrpc/clnt_simp.c: Likewise.
* inet/rexec.c: Likewise.
* sunrpc/clnt_gen.c: Likewise.
* inet/rcmd.c: Likewise.
* sysdeps/generic/glob.c: Likewise.
Diffstat (limited to 'pwd')
-rw-r--r-- | pwd/pwd.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 95, 96, 97, 98 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 95, 96, 97, 98, 99 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 @@ -135,6 +135,12 @@ extern int fgetpwent_r __P ((FILE *__restrict __stream, #endif /* POSIX or reentrant */ +#ifdef __USE_GNU +/* Re-construct the password-file line for the given uid + in the given buffer. This knows the format that the caller + will expect, but this need not be the format of the password file. */ +extern int getpw __P ((__uid_t __uid, char *__buffer)); +#endif __END_DECLS |