source: trunk/libs/newlib/src/newlib/libc/posix/isatty.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 103 bytes
Line 
1/* isatty.c */
2
3#include <unistd.h>
4#include <reent.h>
5
6int
7isatty (int fd)
8{
9  return _isatty (fd);
10}
Note: See TracBrowser for help on using the repository browser.