home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / iscons.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-10-04  |  256 b   |  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.