ttyfd.h 347 B

1234567891011121314
  1. #ifndef TTYFD_H_
  2. #define TTYFD_H_
  3. /**
  4. * ttyfd(void):
  5. * Attempt to return a file descriptor to the attached terminal. In order of
  6. * priority, try to open the terminal device, as returned by ctermid(3); then
  7. * use standard error, standard input, or standard output if any of them are
  8. * terminals.
  9. */
  10. int ttyfd(void);
  11. #endif /* !TTYFD_H_ */