OLD | NEW |
1 // -*- C++ -*- | 1 // -*- C++ -*- |
2 //===---------------------------- cstdio ----------------------------------===// | 2 //===---------------------------- cstdio ----------------------------------===// |
3 // | 3 // |
4 // The LLVM Compiler Infrastructure | 4 // The LLVM Compiler Infrastructure |
5 // | 5 // |
6 // This file is dual licensed under the MIT and the University of Illinois Open | 6 // This file is dual licensed under the MIT and the University of Illinois Open |
7 // Source Licenses. See LICENSE.TXT for details. | 7 // Source Licenses. See LICENSE.TXT for details. |
8 // | 8 // |
9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
10 | 10 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 using ::putchar; | 165 using ::putchar; |
166 using ::puts; | 166 using ::puts; |
167 using ::ungetc; | 167 using ::ungetc; |
168 using ::fread; | 168 using ::fread; |
169 using ::fwrite; | 169 using ::fwrite; |
170 using ::fgetpos; | 170 using ::fgetpos; |
171 using ::fseek; | 171 using ::fseek; |
172 using ::fsetpos; | 172 using ::fsetpos; |
173 using ::ftell; | 173 using ::ftell; |
174 using ::rewind; | 174 using ::rewind; |
| 175 #undef clearerr // @LOCALMOD |
175 using ::clearerr; | 176 using ::clearerr; |
| 177 #undef feof // @LOCALMOD |
176 using ::feof; | 178 using ::feof; |
| 179 #undef ferror // @LOCALMOD |
177 using ::ferror; | 180 using ::ferror; |
178 using ::perror; | 181 using ::perror; |
179 | 182 |
180 _LIBCPP_END_NAMESPACE_STD | 183 _LIBCPP_END_NAMESPACE_STD |
181 | 184 |
182 #endif // _LIBCPP_CSTDIO | 185 #endif // _LIBCPP_CSTDIO |
OLD | NEW |