1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

unbreak build:

K&R style main() makes gcc emit a warning about missing prototypes so
switch to ANSI.
This commit is contained in:
Alfred Perlstein 2002-05-11 03:29:04 +00:00
parent cc7b0935ec
commit 3a9818f926
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96386
2 changed files with 2 additions and 6 deletions

View File

@ -75,9 +75,7 @@ int decode2(int);
void base64_decode(const char *);
int
main(argc, argv)
int argc;
char *argv[];
main(int argc, char *argv[])
{
int rval, ch;

View File

@ -72,9 +72,7 @@ int mode;
char **av;
int
main(argc, argv)
int argc;
char *argv[];
main(int argc, char *argv[])
{
struct stat sb;
int base64;