projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implement futimens and utimensat
[oweals/musl.git]
/
src
/
stat
/
stat.c
1
#include <sys/stat.h>
2
#include "syscall.h"
3
#include "libc.h"
4
5
int stat(const char *path, struct stat *buf)
6
{
7
return syscall2(__NR_stat, (long)path, (long)buf);
8
}
9
10
LFS64(stat);