clean up dns_parse_callback
[musl] / src / linux / quotactl.c
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 }