Mercurial > hg > xemacs-beta
diff src/syspwd.h @ 442:abe6d1db359e r21-2-36
Import from CVS: tag r21-2-36
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:35:02 +0200 |
parents | 3ecd8885ac67 |
children | 943eaba38521 |
line wrap: on
line diff
--- a/src/syspwd.h Mon Aug 13 11:33:40 2007 +0200 +++ b/src/syspwd.h Mon Aug 13 11:35:02 2007 +0200 @@ -19,5 +19,21 @@ /* Synched up with: Not really in FSF. */ -#include <pwd.h> +#ifndef WIN32_NATIVE + +# include <pwd.h> + +#else /* WIN32_NATIVE */ +struct passwd { + char *pw_name; + char *pw_passwd; + int pw_uid; + int pw_gid; + int pw_quota; + char *pw_gecos; + char *pw_dir; + char *pw_shell; +}; + +#endif /* WIN32_NATIVE */