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 *
- ttyname(int fildes)
- {
- if (isatty(fildes))
- return "/dev/con";
- else
- return NULL;
- }
-