diff options
author | mike <mike@FreeBSD.org> | 2002-05-12 03:56:34 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-05-12 03:56:34 +0000 |
commit | 497f9fbf899448b2870ef4feb98022f028988947 (patch) | |
tree | f94edb569ded22e1b5462a72acee524bd7006191 /usr.bin | |
parent | 20313e69cb7ddaba1960c799268e2a9edaeda4e1 (diff) | |
download | FreeBSD-src-497f9fbf899448b2870ef4feb98022f028988947.zip FreeBSD-src-497f9fbf899448b2870ef4feb98022f028988947.tar.gz |
Finish converting the rest of the function declaration and prototypes
to ANSI C. Use new source ID scheme.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/uudecode/uudecode.c | 19 | ||||
-rw-r--r-- | usr.bin/uuencode/uuencode.c | 15 |
2 files changed, 17 insertions, 17 deletions
diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index 20b8838..e1a135a 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -37,13 +37,14 @@ static const char copyright[] = The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ -#ifndef lint #if 0 +#ifndef lint static char sccsid[] = "@(#)uudecode.c 8.2 (Berkeley) 4/2/94"; -#endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#endif + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * uudecode [file ...] @@ -132,7 +133,7 @@ main(int argc, char *argv[]) } int -decode () +decode(void) { int flag; @@ -151,8 +152,7 @@ decode () } int -decode2(flag) - int flag; +decode2(int flag) { struct passwd *pw; register int n; @@ -334,8 +334,7 @@ if (!ignore) \ } void -base64_decode(stream) - const char *stream; +base64_decode(const char *stream) { unsigned char out[MAXPATHLEN * 4]; int rv; @@ -351,7 +350,7 @@ base64_decode(stream) } static void -usage() +usage(void) { (void)fprintf(stderr, "usage: uudecode [-cips] [file ...]\n"); (void)fprintf(stderr, "usage: uudecode [-i] -o output_file [file]\n"); diff --git a/usr.bin/uuencode/uuencode.c b/usr.bin/uuencode/uuencode.c index 72c1c55..96c3370 100644 --- a/usr.bin/uuencode/uuencode.c +++ b/usr.bin/uuencode/uuencode.c @@ -37,13 +37,14 @@ static const char copyright[] = The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ -#ifndef lint #if 0 +#ifndef lint static char sccsid[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94"; -#endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#endif + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * uuencode [input] output @@ -139,7 +140,7 @@ main(int argc, char *argv[]) * Copy from in to out, encoding in base64 as you go along. */ void -base64_encode() +base64_encode(void) { #define GROUPS 8 /* Group output chunks */ unsigned char buf[6]; @@ -166,7 +167,7 @@ base64_encode() * Copy from in to out, encoding as you go along. */ void -encode() +encode(void) { register int ch, n; register char *p; @@ -210,7 +211,7 @@ encode() } static void -usage() +usage(void) { (void)fprintf(stderr,"usage: uuencode [-m] [-o outfile] [infile] remotefile\n"); exit(1); |