1
0

quotactl.c 167 B

1234567
  1. #include <sys/quota.h>
  2. #include "syscall.h"
  3. int quotactl(int cmd, const char *special, int id, char *addr)
  4. {
  5. return syscall(SYS_quotactl, cmd, special, id, addr);
  6. }