rquota.x (a4add9a9b110cb5deed00bf9cf7ca970daae2da7) | rquota.x (1542dbb49a51f3757fc2f7e85fcacba70b272cdf) |
---|---|
1/* 2 * Remote quota protocol 3 * Requires unix authentication 4 */ 5 6#ifndef RPC_HDR 7%#ifndef lint 8%/*static char sccsid[] = "from: @(#)rquota.x 1.2 87/09/20 Copyr 1987 Sun Micro";*/ 9%/*static char sccsid[] = "from: @(#)rquota.x 2.1 88/08/01 4.0 RPCSRC";*/ | 1/* 2 * Remote quota protocol 3 * Requires unix authentication 4 */ 5 6#ifndef RPC_HDR 7%#ifndef lint 8%/*static char sccsid[] = "from: @(#)rquota.x 1.2 87/09/20 Copyr 1987 Sun Micro";*/ 9%/*static char sccsid[] = "from: @(#)rquota.x 2.1 88/08/01 4.0 RPCSRC";*/ |
10%static const char rcsid[] = 11% "$FreeBSD$"; | |
12%#endif /* not lint */ | 10%#endif /* not lint */ |
11%#include <sys/cdefs.h> 12%__FBSDID("$FreeBSD$"); |
|
13#endif 14 15const RQ_PATHLEN = 1024; 16 17struct getquota_args { 18 string gqa_pathp<RQ_PATHLEN>; /* path to filesystem of interest */ 19 int gqa_uid; /* inquire about quota for uid */ 20}; --- 47 unchanged lines hidden --- | 13#endif 14 15const RQ_PATHLEN = 1024; 16 17struct getquota_args { 18 string gqa_pathp<RQ_PATHLEN>; /* path to filesystem of interest */ 19 int gqa_uid; /* inquire about quota for uid */ 20}; --- 47 unchanged lines hidden --- |