mirror of https://github.com/ARMmbed/mbed-os.git
[CodeSourcery Toolchain] Fix standard library retargeting removing duplicate _isatty.
parent
cfb0ae66ad
commit
9ffa978741
|
@ -76,8 +76,4 @@ void *_sbrk(unsigned int incr) {
|
|||
return mem;
|
||||
}
|
||||
|
||||
int _isatty(int file) {
|
||||
return (file < 3) ? 1 : 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -77,8 +77,4 @@ void *_sbrk(unsigned int incr) {
|
|||
return mem;
|
||||
}
|
||||
|
||||
int _isatty(int file) {
|
||||
return (file < 3) ? 1 : 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue