aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix/isatty.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/isatty.c')
-rw-r--r--newlib/libc/posix/isatty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/posix/isatty.c b/newlib/libc/posix/isatty.c
index afd5ec8..8a6740a 100644
--- a/newlib/libc/posix/isatty.c
+++ b/newlib/libc/posix/isatty.c
@@ -4,7 +4,7 @@
#include <reent.h>
int
-_DEFUN(isatty, (fd), int fd)
+isatty (int fd)
{
return _isatty (fd);
}