diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/grp.h | 1 | ||||
-rw-r--r-- | include/pwd.h | 2 | ||||
-rw-r--r-- | include/stdlib.h | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/include/grp.h b/include/grp.h index 2e245d5..5b101cf 100644 --- a/include/grp.h +++ b/include/grp.h @@ -64,6 +64,7 @@ int setgrent __P((void)); void endgrent __P((void)); void setgrfile __P((const char *)); int setgroupent __P((int)); +char *group_from_gid __P((gid_t, int)); #endif __END_DECLS diff --git a/include/pwd.h b/include/pwd.h index 88d705d..9a9398d 100644 --- a/include/pwd.h +++ b/include/pwd.h @@ -36,6 +36,7 @@ * SUCH DAMAGE. * * @(#)pwd.h 8.2 (Berkeley) 1/21/94 + * $FreeBSD$ */ #ifndef _PWD_H_ @@ -105,6 +106,7 @@ struct passwd *getpwent __P((void)); int setpassent __P((int)); void setpwent __P((void)); void endpwent __P((void)); +char *user_from_uid __P((uid_t, int)); #endif __END_DECLS diff --git a/include/stdlib.h b/include/stdlib.h index 476f520..1cdad58 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -169,7 +169,6 @@ int getloadavg __P((double [], int)); __const char * getprogname __P((void)); -char *group_from_gid __P((unsigned long, int)); int heapsort __P((void *, size_t, size_t, int (*)(const void *, const void *))); char *initstate __P((unsigned long, char *, long)); @@ -205,7 +204,6 @@ unsigned long long __uint64_t strtouq __P((const char *, char **, int)); void unsetenv __P((const char *)); -char *user_from_uid __P((unsigned long, int)); #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */ __END_DECLS |