mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-01 03:50:28 +08:00
2008-01-03 Jeff Johnston <jjohnstn@redhat.com>
* arm/redboot-syscalls.c: Consistently supply _isatty if syscalls dir is used in newlib. * bfin/syscalls.c: Ditto. * cris/gensyscalls: Ditto. * fr30/syscalls.c: Ditto. * frv/isatty.c: Ditto. * iq2000/isatty.c: Ditto. * libnosys/isatty.c: Ditto. * m32r/isatty.c: Ditto. * mn10200/isatty.c: Ditto. * mn10300/isatty.c: Ditto. * xstormy16/isatty.c: New file with _isatty function.
This commit is contained in:
parent
a639937a9a
commit
277723722f
@ -1,3 +1,18 @@
|
||||
2008-01-03 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* arm/redboot-syscalls.c: Consistently supply _isatty if syscalls
|
||||
dir is used in newlib.
|
||||
* bfin/syscalls.c: Ditto.
|
||||
* cris/gensyscalls: Ditto.
|
||||
* fr30/syscalls.c: Ditto.
|
||||
* frv/isatty.c: Ditto.
|
||||
* iq2000/isatty.c: Ditto.
|
||||
* libnosys/isatty.c: Ditto.
|
||||
* m32r/isatty.c: Ditto.
|
||||
* mn10200/isatty.c: Ditto.
|
||||
* mn10300/isatty.c: Ditto.
|
||||
* xstormy16/isatty.c: New file with _isatty function.
|
||||
|
||||
2007-12-01 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* cris/Makefile.in (crt0.o): Add CFLAGS when compiling crt0.S.
|
||||
|
@ -103,7 +103,7 @@ _gettimeofday (void * tp, void * tzp)
|
||||
|
||||
|
||||
int
|
||||
isatty(int fd)
|
||||
_isatty(int fd)
|
||||
{
|
||||
int err;
|
||||
err = __syscall(SYS_isatty, fd);
|
||||
|
@ -211,7 +211,7 @@ _times (struct tms * tp)
|
||||
}
|
||||
|
||||
int
|
||||
isatty (int fd)
|
||||
_isatty (int fd)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
@ -114,9 +114,8 @@ struct termios {
|
||||
/* From asm-etrax100/ioctls.h: beware of updates. */
|
||||
#define TCGETS 0x5401
|
||||
|
||||
/* Note that this name does not have a prepended underscore. */
|
||||
int
|
||||
isatty (int fd)
|
||||
_isatty (int fd)
|
||||
{
|
||||
struct termios dummy;
|
||||
int save_errno = errno;
|
||||
|
@ -129,7 +129,7 @@ _unlink ()
|
||||
}
|
||||
|
||||
int
|
||||
isatty (fd)
|
||||
_isatty (fd)
|
||||
int fd;
|
||||
{
|
||||
return 0;
|
||||
|
@ -20,7 +20,7 @@
|
||||
* serial port, we'll say yes _AND return a 1.
|
||||
*/
|
||||
int
|
||||
_DEFUN (isatty, (fd),
|
||||
_DEFUN (_isatty, (fd),
|
||||
int fd)
|
||||
{
|
||||
return (1);
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "trap.h"
|
||||
|
||||
|
||||
isatty (fd)
|
||||
_isatty (fd)
|
||||
int fd;
|
||||
{
|
||||
return 1;
|
||||
|
@ -11,11 +11,11 @@ extern int errno;
|
||||
#include "warning.h"
|
||||
|
||||
int
|
||||
_DEFUN (isatty, (file),
|
||||
_DEFUN (_isatty, (file),
|
||||
int file)
|
||||
{
|
||||
errno = ENOSYS;
|
||||
return 0;
|
||||
}
|
||||
|
||||
stub_warning(isatty)
|
||||
stub_warning(_isatty)
|
||||
|
@ -2,7 +2,7 @@
|
||||
/* FIXME: can we not nuke the 10,000 copies of this function
|
||||
and fudge things (which is all this function does) in _fstat? */
|
||||
int
|
||||
isatty (int fd)
|
||||
_isatty (int fd)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "trap.h"
|
||||
|
||||
|
||||
isatty (fd)
|
||||
_isatty (fd)
|
||||
int fd;
|
||||
{
|
||||
return 1;
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "trap.h"
|
||||
|
||||
|
||||
isatty (fd)
|
||||
_isatty (fd)
|
||||
int fd;
|
||||
{
|
||||
return 1;
|
||||
|
27
libgloss/xstormy16/isatty.c
Normal file
27
libgloss/xstormy16/isatty.c
Normal file
@ -0,0 +1,27 @@
|
||||
/* isatty.c -- chek the terminal device.
|
||||
*
|
||||
* Copyright (c) 1995 Cygnus Support
|
||||
*
|
||||
* The authors hereby grant permission to use, copy, modify, distribute,
|
||||
* and license this software and its documentation for any purpose, provided
|
||||
* that existing copyright notices are retained in all copies and that this
|
||||
* notice is included verbatim in any distributions. No written agreement,
|
||||
* license, or royalty fee is required for any of the authorized uses.
|
||||
* Modifications to this software may be copyrighted by their authors
|
||||
* and need not follow the licensing terms described here, provided that
|
||||
* the new terms are clearly indicated on the first page of each file where
|
||||
* they apply.
|
||||
*/
|
||||
#include "glue.h"
|
||||
|
||||
/*
|
||||
* isatty -- returns 1 if connected to a terminal device,
|
||||
* returns 0 if not. Since we're hooked up to a
|
||||
* serial port, we'll say yes _AND return a 1.
|
||||
*/
|
||||
int
|
||||
_DEFUN (_isatty, (fd),
|
||||
int fd)
|
||||
{
|
||||
return (1);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user