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:
Jeff Johnston 2008-01-03 22:38:31 +00:00
parent a639937a9a
commit 277723722f
12 changed files with 53 additions and 12 deletions

View File

@ -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.

View File

@ -103,7 +103,7 @@ _gettimeofday (void * tp, void * tzp)
int
isatty(int fd)
_isatty(int fd)
{
int err;
err = __syscall(SYS_isatty, fd);

View File

@ -211,7 +211,7 @@ _times (struct tms * tp)
}
int
isatty (int fd)
_isatty (int fd)
{
return 1;
}

View File

@ -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;

View File

@ -129,7 +129,7 @@ _unlink ()
}
int
isatty (fd)
_isatty (fd)
int fd;
{
return 0;

View File

@ -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);

View File

@ -4,7 +4,7 @@
#include "trap.h"
isatty (fd)
_isatty (fd)
int fd;
{
return 1;

View File

@ -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)

View File

@ -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;
}

View File

@ -4,7 +4,7 @@
#include "trap.h"
isatty (fd)
_isatty (fd)
int fd;
{
return 1;

View File

@ -4,7 +4,7 @@
#include "trap.h"
isatty (fd)
_isatty (fd)
int fd;
{
return 1;

View 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);
}