home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
comm
/
mail
/
smail
/
src
/
rcs
/
pwd.h,v
< prev
next >
Wrap
Text File
|
1993-12-21
|
649b
|
46 lines
head 1.1;
access;
symbols
C_1:1.1;
locks; strict;
comment @ * @;
1.1
date 93.09.08.16.25.48; author Aussem; state Exp;
branches;
next ;
desc
@passwd structures
@
1.1
log
@Initial revision
@
text
@
/*
* PWD.H
*
* (C) Copyright 1989-1990 by Matthew Dillon, All Rights Reserved.
*/
struct passwd {
char *pw_name;
char *pw_passwd;
long pw_uid;
long pw_gid;
long pw_quota;
char *pw_comment;
char *pw_gecos;
char *pw_dir;
char *pw_shell;
char *pw_shell_arg0; /* arg0 broken out from pw_shell */
char *pw_shell_argn; /* remaining args from pw_shell */
};
@