diff options
Diffstat (limited to 'libgloss/arm')
-rw-r--r-- | libgloss/arm/libcfunc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libgloss/arm/libcfunc.c b/libgloss/arm/libcfunc.c index bde55afd2..f28f527b2 100644 --- a/libgloss/arm/libcfunc.c +++ b/libgloss/arm/libcfunc.c @@ -47,10 +47,7 @@ int _isatty(int fildes); int __attribute__((weak)) isatty(int fildes) { - /* GDB does not yet support the IsTTY SWI that _isatty - * calls, so always return true for now. */ - (void)fildes; - return 1; + return _isatty(fildes); } int __attribute__((weak)) |