musl-tcc/src/linux/quotactl.c

8 lines
167 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#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);
}