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

Side by Side Diff: fusl/src/stat/__xstat.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://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
« no previous file with comments | « fusl/src/signal/x86_64/sigsetjmp.s ('k') | fusl/src/stat/chmod.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <sys/stat.h>
2 #include "libc.h"
3
4 int __fxstat(int ver, int fd, struct stat *buf)
5 {
6 return fstat(fd, buf);
7 }
8
9 int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag)
10 {
11 return fstatat(fd, path, buf, flag);
12 }
13
14 int __lxstat(int ver, const char *path, struct stat *buf)
15 {
16 return lstat(path, buf);
17 }
18
19 int __xstat(int ver, const char *path, struct stat *buf)
20 {
21 return stat(path, buf);
22 }
23
24 LFS64(__fxstat);
25 LFS64(__fxstatat);
26 LFS64(__lxstat);
27 LFS64(__xstat);
28
29 int __xmknod(int ver, const char *path, mode_t mode, dev_t *dev)
30 {
31 return mknod(path, mode, *dev);
32 }
33
34 int __xmknodat(int ver, int fd, const char *path, mode_t mode, dev_t *dev)
35 {
36 return mknodat(fd, path, mode, *dev);
37 }
OLDNEW
« no previous file with comments | « fusl/src/signal/x86_64/sigsetjmp.s ('k') | fusl/src/stat/chmod.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698