Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/mmixware/isatty.c')
-rw-r--r--newlib/libc/sys/mmixware/isatty.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/sys/mmixware/isatty.c b/newlib/libc/sys/mmixware/isatty.c
index 1e1db6491..86729aa56 100644
--- a/newlib/libc/sys/mmixware/isatty.c
+++ b/newlib/libc/sys/mmixware/isatty.c
@@ -1,6 +1,6 @@
/* isatty for MMIXware.
- Copyright (C) 2001, 2008 Hans-Peter Nilsson
+ Copyright (C) 2001 Hans-Peter Nilsson
Permission to use, copy, modify, and distribute this software is
freely granted, provided that the above copyright notice, this notice
@@ -16,8 +16,8 @@
#include <sys/stat.h>
#include "sys/syscall.h"
-int
-_isatty (int fd)
+isatty (fd)
+ int fd;
{
return fd == 0 || fd == 1 || fd == 2;
}