Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: include/cstdio

Issue 904473004: Rebased localmods in libcxx to 223109. (Closed)
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/cmath ('k') | lib/CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « include/cmath ('k') | lib/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698