summaryrefslogtreecommitdiffstats
path: root/usr.bin/uudecode/uudecode.c
diff options
context:
space:
mode:
authormike <mike@FreeBSD.org>2002-05-12 03:56:34 +0000
committermike <mike@FreeBSD.org>2002-05-12 03:56:34 +0000
commit497f9fbf899448b2870ef4feb98022f028988947 (patch)
treef94edb569ded22e1b5462a72acee524bd7006191 /usr.bin/uudecode/uudecode.c
parent20313e69cb7ddaba1960c799268e2a9edaeda4e1 (diff)
downloadFreeBSD-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/uudecode/uudecode.c')
-rw-r--r--usr.bin/uudecode/uudecode.c19
1 files changed, 9 insertions, 10 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");
OpenPOWER on IntegriCloud