mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
12 lines
161 B
C
Executable file
12 lines
161 B
C
Executable file
/* See LICENSE of license details. */
|
|
|
|
#include <unistd.h>
|
|
|
|
int _isatty(int fd)
|
|
{
|
|
if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|