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

Side by Side Diff: fusl/src/stdio/ftell.c

Issue 1579273002: Remove -Wno-ignored-attributes from fusl build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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
« fusl/src/stat/statvfs.c ('K') | « fusl/src/stdio/fseek.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "stdio_impl.h" 1 #include "stdio_impl.h"
2 #include <limits.h> 2 #include <limits.h>
3 #include <errno.h> 3 #include <errno.h>
4 4
5 off_t __ftello_unlocked(FILE *f) 5 off_t __ftello_unlocked(FILE *f)
6 { 6 {
7 off_t pos = f->seek(f, 0, 7 off_t pos = f->seek(f, 0,
8 (f->flags & F_APP) && f->wpos > f->wbase 8 (f->flags & F_APP) && f->wpos > f->wbase
9 ? SEEK_END : SEEK_CUR); 9 ? SEEK_END : SEEK_CUR);
10 if (pos < 0) return pos; 10 if (pos < 0) return pos;
(...skipping 16 matching lines...) Expand all
27 off_t pos = __ftello(f); 27 off_t pos = __ftello(f);
28 if (pos > LONG_MAX) { 28 if (pos > LONG_MAX) {
29 errno = EOVERFLOW; 29 errno = EOVERFLOW;
30 return -1; 30 return -1;
31 } 31 }
32 return pos; 32 return pos;
33 } 33 }
34 34
35 weak_alias(__ftello, ftello); 35 weak_alias(__ftello, ftello);
36 36
37 LFS64(ftello); 37 weak_alias(__ftello, ftello64);
OLDNEW
« fusl/src/stat/statvfs.c ('K') | « fusl/src/stdio/fseek.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698