home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / c / gen / ttyname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-24  |  305 b   |  18 lines

  1. /*
  2.   (c) Copyright 1992 Eric Backus
  3.  
  4.   This software may be used freely so long as this copyright notice is
  5.   left intact.  There is no warrantee on this software.
  6. */
  7.  
  8. #include <std.h>
  9.  
  10. char *
  11. ttyname(int fildes)
  12. {
  13.     if (isatty(fildes))
  14.     return "/dev/con";
  15.     else
  16.     return NULL;
  17. }    
  18.