comparison src/syspwd.h @ 410:de805c49cfc1 r21-2-35

Import from CVS: tag r21-2-35
author cvs
date Mon, 13 Aug 2007 11:19:21 +0200
parents 41ff10fd062f
children 697ef44129c6
comparison
equal deleted inserted replaced
409:301b9ebbdf3b 410:de805c49cfc1
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 #include <pwd.h> 22 #ifndef WIN32_NATIVE
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 */