From c1422e5b7cdb4400f934c91bcefa3a1a96d789fb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 9 Oct 1999 21:56:43 +0000 Subject: Update. Patch by khendricks@ivey.uwo.ca [libc/1382]. --- pwd/pwd.h | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'pwd') diff --git a/pwd/pwd.h b/pwd/pwd.h index a528a51948..651b9da63d 100644 --- a/pwd/pwd.h +++ b/pwd/pwd.h @@ -67,29 +67,29 @@ struct passwd #if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN_EXTENDED /* Rewind the password-file stream. */ -extern void setpwent __P ((void)); +extern void setpwent (void) __THROW; /* Close the password-file stream. */ -extern void endpwent __P ((void)); +extern void endpwent (void) __THROW; /* Read an entry from the password-file stream, opening it if necessary. */ -extern struct passwd *getpwent __P ((void)); +extern struct passwd *getpwent (void) __THROW; #endif #ifdef __USE_SVID /* Read an entry from STREAM. */ -extern struct passwd *fgetpwent __P ((FILE *__stream)); +extern struct passwd *fgetpwent (FILE *__stream) __THROW; /* Write the given entry onto the given stream. */ -extern int putpwent __P ((__const struct passwd *__restrict __p, - FILE *__restrict __f)); +extern int putpwent (__const struct passwd *__restrict __p, + FILE *__restrict __f) __THROW; #endif /* Search for an entry with a matching user ID. */ -extern struct passwd *getpwuid __P ((__uid_t __uid)); +extern struct passwd *getpwuid (__uid_t __uid) __THROW; /* Search for an entry with a matching username. */ -extern struct passwd *getpwnam __P ((__const char *__name)); +extern struct passwd *getpwnam (__const char *__name) __THROW; #if defined __USE_POSIX || defined __USE_MISC @@ -108,29 +108,29 @@ extern struct passwd *getpwnam __P ((__const char *__name)); POSIX people would choose. */ # if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN_EXTENDED -extern int getpwent_r __P ((struct passwd *__restrict __resultbuf, - char *__restrict __buffer, size_t __buflen, - struct passwd **__restrict __result)); +extern int getpwent_r (struct passwd *__restrict __resultbuf, + char *__restrict __buffer, size_t __buflen, + struct passwd **__restrict __result) __THROW; # endif -extern int getpwuid_r __P ((__uid_t __uid, - struct passwd *__restrict __resultbuf, - char *__restrict __buffer, size_t __buflen, - struct passwd **__restrict __result)); +extern int getpwuid_r (__uid_t __uid, + struct passwd *__restrict __resultbuf, + char *__restrict __buffer, size_t __buflen, + struct passwd **__restrict __result) __THROW; -extern int getpwnam_r __P ((__const char *__restrict __name, - struct passwd *__restrict __resultbuf, - char *__restrict __buffer, size_t __buflen, - struct passwd **__restrict __result)); +extern int getpwnam_r (__const char *__restrict __name, + struct passwd *__restrict __resultbuf, + char *__restrict __buffer, size_t __buflen, + struct passwd **__restrict __result) __THROW; # ifdef __USE_SVID /* Read an entry from STREAM. This function is not standardized and probably never will. */ -extern int fgetpwent_r __P ((FILE *__restrict __stream, - struct passwd *__restrict __resultbuf, - char *__restrict __buffer, size_t __buflen, - struct passwd **__restrict __result)); +extern int fgetpwent_r (FILE *__restrict __stream, + struct passwd *__restrict __resultbuf, + char *__restrict __buffer, size_t __buflen, + struct passwd **__restrict __result) __THROW; # endif #endif /* POSIX or reentrant */ @@ -139,7 +139,7 @@ extern int fgetpwent_r __P ((FILE *__restrict __stream, /* 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)); +extern int getpw (__uid_t __uid, char *__buffer) __THROW; #endif __END_DECLS -- cgit v1.2.3