Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/pwd.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (17 years ago) by niro
File MIME type: text/plain
File size: 287 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #ifndef _PWD_H
2 #define _PWD_H
3
4 #include <klibc/extern.h>
5 #include <sys/types.h>
6
7 struct passwd {
8 char *pw_name;
9 char *pw_passwd;
10 uid_t pw_uid;
11 gid_t pw_gid;
12 char *pw_gecos;
13 char *pw_dir;
14 char *pw_shell;
15 };
16
17 __extern struct passwd *getpwnam(const char *name);
18
19 #endif /* _PWD_H */