summaryrefslogtreecommitdiff
path: root/src/linux
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/quotactl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/quotactl.c b/src/linux/quotactl.c
new file mode 100644
index 00000000..344eb0d1
--- /dev/null
+++ b/src/linux/quotactl.c
@@ -0,0 +1,7 @@
+#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);
+}