diff options
author | alfred <alfred@FreeBSD.org> | 2002-07-11 18:31:16 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-07-11 18:31:16 +0000 |
commit | c40ae61c8c183033b215d5e580b876d7f4b55a89 (patch) | |
tree | 71dd463b16fbb724acc1af2cd4770e75c282f7dc /usr.sbin/edquota | |
parent | 26d377573f85cfd56e64eb2d02504fcb09dad440 (diff) | |
download | FreeBSD-src-c40ae61c8c183033b215d5e580b876d7f4b55a89.zip FreeBSD-src-c40ae61c8c183033b215d5e580b876d7f4b55a89.tar.gz |
de-__P()
Diffstat (limited to 'usr.sbin/edquota')
-rw-r--r-- | usr.sbin/edquota/edquota.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index fefb657..0f45116 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -83,20 +83,20 @@ struct quotause { }; #define FOUND 0x01 -int alldigits __P((const char *s)); -int cvtatos __P((time_t, char *, time_t *)); -char *cvtstoa __P((time_t)); -int editit __P((char *)); -void freeprivs __P((struct quotause *)); -int getentry __P((const char *, int)); -struct quotause *getprivs __P((long, int, char *)); -int hasquota __P((struct fstab *, int, char **)); -void putprivs __P((long, int, struct quotause *)); -int readprivs __P((struct quotause *, char *)); -int readtimes __P((struct quotause *, char *)); -static void usage __P((void)); -int writetimes __P((struct quotause *, int, int)); -int writeprivs __P((struct quotause *, int, char *, int)); +int alldigits(const char *s); +int cvtatos(time_t, char *, time_t *); +char *cvtstoa(time_t); +int editit(char *); +void freeprivs(struct quotause *); +int getentry(const char *, int); +struct quotause *getprivs(long, int, char *); +int hasquota(struct fstab *, int, char **); +void putprivs(long, int, struct quotause *); +int readprivs(struct quotause *, char *); +int readtimes(struct quotause *, char *); +static void usage(void); +int writetimes(struct quotause *, int, int); +int writeprivs(struct quotause *, int, char *, int); int main(argc, argv) |