[Sanitizer] implement internal_isatty on Windows

llvm-svn: 170507
This commit is contained in:
Alexey Samsonov 2012-12-19 07:57:42 +00:00
parent 14a4af0e66
commit b6219c060b
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ int internal_close(fd_t fd) {
} }
int internal_isatty(fd_t fd) { int internal_isatty(fd_t fd) {
UNIMPLEMENTED(); return _isatty(fd);
} }
fd_t internal_open(const char *filename, bool write) { fd_t internal_open(const char *filename, bool write) {