mirror of
https://github.com/fluencelabs/musl
synced 2025-06-24 12:12:04 +00:00
add sys/quota.h and quotactl syscall wrapper
based on patch by Timo Teräs.
This commit is contained in:
7
src/linux/quotactl.c
Normal file
7
src/linux/quotactl.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <sys/quota.h>
|
||||
#include "syscall.h"
|
||||
|
||||
int quotactl(int cmd, const char *special, int id, char *addr)
|
||||
{
|
||||
return syscall(SYS_quotactl, cmd, special, id, addr);
|
||||
}
|
Reference in New Issue
Block a user