OSDN Git Service

fix deadlock and buffered data loss race in fclose
[android-x86/external-musl-libc.git] / 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 }