Make the user_from_uid and group_from_gid prototypes match the actual

function definitions.
This commit is contained in:
Warner Losh 2002-02-13 09:33:00 +00:00
parent 63195486ba
commit 5644da9ee5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90606

View File

@ -169,7 +169,7 @@ int getloadavg __P((double [], int));
__const char *
getprogname __P((void));
char *group_from_gid __P((unsigned long, int));
char *group_from_gid __P((gid_t, int));
int heapsort __P((void *, size_t, size_t,
int (*)(const void *, const void *)));
char *initstate __P((unsigned long, char *, long));
@ -205,7 +205,7 @@ unsigned long long
__uint64_t
strtouq __P((const char *, char **, int));
void unsetenv __P((const char *));
char *user_from_uid __P((unsigned long, int));
char *user_from_uid __P((uid_t, int));
#endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
__END_DECLS