forked from Firmware/Firmwares
12 lines
167 B
C
12 lines
167 B
C
|
/* See LICENSE of license details. */
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int __wrap_isatty(int fd)
|
||
|
{
|
||
|
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
||
|
return 1;
|
||
|
|
||
|
return 0;
|
||
|
}
|