home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / isatty.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  172b  |  12 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int isatty(int fd)
  5. {
  6.   int istty;
  7.  
  8.   chkabort();
  9.   if (ioctl(fd, _AMIGA_INTERACTIVE, &istty) != 0) return 0;
  10.   return istty;
  11. }
  12.