Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/mt/isatty.c
2023-03-06 14:48:14 +01:00

12 lines
125 B
C

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"
isatty (fd)
int fd;
{
return 1;
}