diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-16 20:43:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-16 20:43:57 +0000 |
commit | 15a3204a3d89056d5e274b009633e7fd3260cd52 (patch) | |
tree | 152a46d177752b81963fbad8d2ad5a45f04648b1 /usr.bin | |
parent | 6b1307055392a9a07e7ea384fe2eedb3de11b8f8 (diff) |
add prototypes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rdist/rdist.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/usr.bin/rdist/rdist.c b/usr.bin/rdist/rdist.c index 5c597c29685..1ca225cca6e 100644 --- a/usr.bin/rdist/rdist.c +++ b/usr.bin/rdist/rdist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rdist.c,v 1.5 1998/06/26 21:21:20 millert Exp $ */ +/* $OpenBSD: rdist.c,v 1.6 1998/07/16 20:43:56 millert Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -39,7 +39,7 @@ static char RCSid[] = "$From: rdist.c,v 6.65 1995/12/12 00:20:39 mcooper Exp $"; #else static char RCSid[] = -"$OpenBSD: rdist.c,v 1.5 1998/06/26 21:21:20 millert Exp $"; +"$OpenBSD: rdist.c,v 1.6 1998/07/16 20:43:56 millert Exp $"; #endif static char sccsid[] = "@(#)main.c 5.1 (Berkeley) 6/6/85"; @@ -59,6 +59,14 @@ static char copyright[] = * Remote distribution program. */ +#ifdef __STDC__ +void docmdargs(int, char **); +void usage(void); +#else +void docmdargs(); +void usage(); +#endif + char *distfile = NULL; /* Name of distfile to use */ int maxchildren = MAXCHILDREN; /* Max no of concurrent PIDs */ int nflag = 0; /* Say without doing */ |