home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / posix / unistd / ttyname.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-09  |  269 b   |  16 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <unistd.h>
  4.  
  5. static char dev_con[] = "con";
  6.  
  7. /* ARGSUSED */
  8. char *
  9. ttyname(int fildes)
  10. {
  11.   if (isatty(fildes))
  12.     return dev_con;
  13.   else
  14.     return 0;
  15. }    
  16.