home *** CD-ROM | disk | FTP | other *** search
- /*
- (c) Copyright 1992 Eric Backus
-
- This software may be used freely so long as this copyright notice is
- left intact. There is no warrantee on this software.
- */
-
- #include <std.h>
-
- char *
- getlogin(void)
- {
- char *p;
-
- p = getenv("USER");
- if (!p) p = getenv("LOGNAME");
- if (!p) p = "dosuser";
- return p;
- }
-