X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Fstat.c;h=23570e7a2460aacaabc7d8b22048a012de8fdac3;hb=d0b7f9768df133428b6587a5273551c56c46d6a6;hp=b4e627957654316d5e42aa8172d824b5989a8c36;hpb=9493892021eac4edf1776d945bcdd3f7a96f6978;p=musl diff --git a/src/stat/stat.c b/src/stat/stat.c index b4e62795..23570e7a 100644 --- a/src/stat/stat.c +++ b/src/stat/stat.c @@ -1,10 +1,7 @@ #include #include -#include "syscall.h" int stat(const char *restrict path, struct stat *restrict buf) { return fstatat(AT_FDCWD, path, buf, 0); } - -weak_alias(stat, stat64);