home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
unixlib
/
src
/
isatty.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
172b
|
12 lines
#include "amiga.h"
#include <amiga/ioctl.h>
int isatty(int fd)
{
int istty;
chkabort();
if (ioctl(fd, _AMIGA_INTERACTIVE, &istty) != 0) return 0;
return istty;
}