home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISCONS.C < prev    next >
Text File  |  1987-10-04  |  256b  |  10 lines

  1. #include stdio.h
  2. #include clib.def
  3. extern int Udevice[];
  4. /*
  5. ** Determine if fd is the console.
  6. */
  7. iscons(fd) int fd; {
  8.   return (Udevice[fd] == CONSOL);
  9.   }
  10.