diff --git a/src/fcntl/fcntl.c b/src/fcntl/fcntl.c index fb7806a..3b8f6fd 100644 --- a/src/fcntl/fcntl.c +++ b/src/fcntl/fcntl.c @@ -24,3 +24,5 @@ int fcntl(int fd, int cmd, ...) } return syscall(SYS_fcntl, fd, cmd, arg); } + +weak_alias(fcntl, __fcntl);