Mercurial > hg > xemacs-beta
view nt/inc/pwd.h @ 127:7b236889ca3a xemacs-20-1p2
Added tag xemacs-20-1p1 for changeset 1370575f1259
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:27:42 +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_ */