blob: d5665311e5305bdcd95e51c64b3ed7abaa6eb825 [file] [log] [blame]
#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);
}