quotactl.c raw

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