Update.
[glibc.git] / include / pwd.h
blobf91622840a357a782824e0b672e88220f64329a9
1 #ifndef _PWD_H
2 #include <pwd/pwd.h>
4 /* Now define the internal interfaces. */
5 extern int __getpwent_r (struct passwd *__resultbuf, char *__buffer,
6 size_t __buflen, struct passwd **__result);
7 extern int __getpwuid_r (__uid_t __uid, struct passwd *__resultbuf,
8 char *__buffer, size_t __buflen,
9 struct passwd **__result);
10 extern int __getpwnam_r (__const char *__name, struct passwd *__resultbuf,
11 char *__buffer, size_t __buflen,
12 struct passwd **__result);
13 extern int __fgetpwent_r (FILE * __stream, struct passwd *__resultbuf,
14 char *__buffer, size_t __buflen,
15 struct passwd **__result);
16 #endif