diff options
Diffstat (limited to 'newlib/libc/posix/_isatty.c')
-rw-r--r-- | newlib/libc/posix/_isatty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/posix/_isatty.c b/newlib/libc/posix/_isatty.c index 7d6ccae..c4dcc1f 100644 --- a/newlib/libc/posix/_isatty.c +++ b/newlib/libc/posix/_isatty.c @@ -6,7 +6,7 @@ #include <errno.h> int -_DEFUN(_isatty, (fd), int fd) +_isatty (int fd) { struct stat buf; |