1 /* Enable a variable CVSUSER for cvs. */
2 /* See cvs/subr.c: getcaller(). */
13 char * getlogin (void)
17 s
= getenv ("CVSUSER");
26 struct passwd
* getpwnam (const char *name
)
28 static struct passwd pw
;
29 static char namebuf
[100];
31 pw
.pw_name
= strcpy (namebuf
, name
);
37 pw
.pw_shell
= "/bin/sh";