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

Side by Side Diff: fusl/src/dirent/__getdents.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
OLDNEW
1 #include <dirent.h> 1 #include <dirent.h>
2 #include "syscall.h" 2 #include "syscall.h"
3 #include "libc.h" 3 #include "libc.h"
4 4
5 int __getdents(int fd, struct dirent *buf, size_t len) 5 int __getdents(int fd, struct dirent *buf, size_t len)
6 { 6 {
7 return syscall(SYS_getdents, fd, buf, len); 7 return syscall(SYS_getdents, fd, buf, len);
8 } 8 }
9 9
10 weak_alias(__getdents, getdents); 10 weak_alias(__getdents, getdents);
11 11
12 LFS64(getdents); 12 weak_alias(__getdents, getdents64);
OLDNEW
« no previous file with comments | « fusl/BUILD.gn ('k') | fusl/src/mman/mmap.c » ('j') | fusl/src/stat/statvfs.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698