2017-12-26 21:27:52 +01:00
|
|
|
#include <machine/syscall.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "internal_syscall.h"
|
|
|
|
|
|
|
|
extern int _fstat(int file, struct stat *st);
|
|
|
|
|
|
|
|
/* Query whether output stream is a terminal. For consistency with the
|
|
|
|
other minimal implementations, which only support output to stdout,
|
|
|
|
this minimal implementation is suggested by the newlib docs. */
|
|
|
|
|
|
|
|
int
|
|
|
|
_isatty(int file)
|
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
int ret = _fstat (file, &s);
|
2017-11-16 09:08:16 +01:00
|
|
|
return ret == -1 ? 0 : !!(s.st_mode & S_IFCHR);
|
2017-12-26 21:27:52 +01:00
|
|
|
}
|