umka/isatty.c

16 lines
200 B
C
Raw Normal View History

2021-12-12 11:35:35 +01:00
#include "isatty.h"
#ifdef _WIN32
int isatty(int fd) {
// TODO: Make it work for win32
return 0;
}
int fileno(FILE *fp) {
// TODO: Make it work for win32
return 0;
}
#endif // _WIN32