Mercurial > hg > xemacs-beta
view nt/inc/pwd.h @ 301:f8fd9702bf71
Added tag r21-0b48 for changeset 3cc9f0ebfbd1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:40:27 +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_ */