X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Frquotad%2Fquotactl.c;fp=utils%2Frquotad%2Fquotactl.c;h=0000000000000000000000000000000000000000;hp=8966335aef8a6879b842e959b4b63305f9b4721c;hb=3f0395ca63d99e6bc39c1bc8109b716d8d824681;hpb=6d8fa3a51242c630084dd4f365285eb9129a9b46 diff --git a/utils/rquotad/quotactl.c b/utils/rquotad/quotactl.c deleted file mode 100644 index 8966335..0000000 --- a/utils/rquotad/quotactl.c +++ /dev/null @@ -1,33 +0,0 @@ -/* - * QUOTA An implementation of the diskquota system for the LINUX - * operating system. QUOTA is implemented using the BSD systemcall - * interface as the means of communication with the user level. - * Should work for all filesystems because of integration into the - * VFS layer of the operating system. - * This is based on the Melbourne quota system wich uses both user and - * group quota files. - * - * System call interface. - * - * Version: $Id: quotactl.c,v 2.3 1995/07/23 09:58:06 mvw Exp mvw $ - * - * Author: Marco van Wieringen - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version - * 2 of the License, or (at your option) any later version. - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include -#include -#include - -int quotactl(int cmd, const char * special, int id, caddr_t addr) -{ - return syscall(SYS_quotactl, cmd, special, id, addr); -}