isatty.c 151 B

1234567891011
  1. /*
  2. * isatty - check if a file descriptor is associated with a terminal
  3. */
  4. /* $Id$ */
  5. int _isatty(int d);
  6. int isatty(int d)
  7. {
  8. return _isatty(d);
  9. }