diff options
Diffstat (limited to 'src/linux/quotactl.c')
-rw-r--r-- | src/linux/quotactl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/quotactl.c b/src/linux/quotactl.c index 344eb0d1..7725b9b6 100644 --- a/src/linux/quotactl.c +++ b/src/linux/quotactl.c @@ -5,3 +5,11 @@ int quotactl(int cmd, const char *special, int id, char *addr) { return syscall(SYS_quotactl, cmd, special, id, addr); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |