1 2 3 4 5 6 7 8 9 10
/* isatty.c */ #include <unistd.h> #include <reent.h> int _DEFUN(isatty, (fd), int fd) { return _isatty (fd); }