[CodeSourcery Toolchain] Fix standard library retargeting removing duplicate _isatty.

pull/1/head
Emilio Monti 2013-02-25 10:37:22 +00:00
parent cfb0ae66ad
commit 9ffa978741
2 changed files with 0 additions and 8 deletions

View File

@ -76,8 +76,4 @@ void *_sbrk(unsigned int incr) {
return mem;
}
int _isatty(int file) {
return (file < 3) ? 1 : 0;
}
}

View File

@ -77,8 +77,4 @@ void *_sbrk(unsigned int incr) {
return mem;
}
int _isatty(int file) {
return (file < 3) ? 1 : 0;
}
}