Mercurial > hg > xemacs-beta
view nt/inc/pwd.h @ 266:18d185df8c54
Added tag r20-5b31 for changeset 8efd647ea9ca
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:25:39 +0200 |
parents | 7d55a9ba150c |
children |
line wrap: on
line source
#ifndef _PWD_H_ #define _PWD_H_ /* * pwd.h doesn't exist on NT, so we put together our own. */ 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 /* _PWD_H_ */