[__bsdi__]: Alternate decls of getpwuid and getpwnam.

This commit is contained in:
Richard M. Stallman 1993-05-31 23:50:17 +00:00
parent cd1168e194
commit 3e0be4d0f2

View file

@ -63,8 +63,13 @@ extern short getuid (); /* If this causes portability problems,
default to `int' anyway. */
#endif
#ifdef __bsdi__
extern struct passwd *getpwuid (uid_t);
extern struct passwd *getpwnam (const char *);
#else
extern struct passwd *getpwuid ();
extern struct passwd *getpwnam ();
#endif
static char *
gethomedir (dirname)