X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Flinux%2Ffallocate.c;h=7d68bc8f64f6e5c8d1e62148f560d6904fd52fd8;hb=0beb9dfbecad38af9759b1e83eeb007e28b70abb;hp=ae766d5e5fa4e63a547babe811e39efb2e69e2d6;hpb=1e7a581ad6e2b03e91748dd1295288e053f86e04;p=musl diff --git a/src/linux/fallocate.c b/src/linux/fallocate.c index ae766d5e..7d68bc8f 100644 --- a/src/linux/fallocate.c +++ b/src/linux/fallocate.c @@ -1,7 +1,6 @@ #define _GNU_SOURCE #include #include "syscall.h" -#include "libc.h" int fallocate(int fd, int mode, off_t base, off_t len) { @@ -10,4 +9,4 @@ int fallocate(int fd, int mode, off_t base, off_t len) } #undef fallocate64 -LFS64(fallocate); +weak_alias(fallocate, fallocate64);