comparison src/syspwd.h @ 412:697ef44129c6 r21-2-14

Import from CVS: tag r21-2-14
author cvs
date Mon, 13 Aug 2007 11:20:41 +0200
parents de805c49cfc1
children
comparison
equal deleted inserted replaced
411:12e008d41344 412:697ef44129c6
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */ 18 Boston, MA 02111-1307, USA. */
19 19
20 /* Synched up with: Not really in FSF. */ 20 /* Synched up with: Not really in FSF. */
21 21
22 #ifndef WIN32_NATIVE 22 #include <pwd.h>
23 23
24 # include <pwd.h>
25
26 #else /* WIN32_NATIVE */
27
28 struct passwd {
29 char *pw_name;
30 char *pw_passwd;
31 int pw_uid;
32 int pw_gid;
33 int pw_quota;
34 char *pw_gecos;
35 char *pw_dir;
36 char *pw_shell;
37 };
38
39 #endif /* WIN32_NATIVE */