view nt/inc/pwd.h @ 16604:f3590f61b68d

Thu Nov 21 16:42:41 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * config.guess [UNAME_SYSTEM == GNU]: Use a four-part configuration name for gnu so it can be distinguished from foo-foo-linux-gnu with simple globbing patterns.
author Thomas Bushnell, BSG <thomas@gnu.org>
date Thu, 21 Nov 1996 21:43:48 +0000
parents 1877e9736ea1
children 6df655ed941d
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_ */