source: trunk/sys/dietlibc/isatty.c @ 413

Last change on this file since 413 was 1, checked in by alain, 7 years ago

First import

File size: 72 bytes
Line 
1#include <unistd.h>
2
3int isatty(int fd) {
4  return (fd < 4) ? 1 : 0;
5}
6
Note: See TracBrowser for help on using the repository browser.