=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/m4/main.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- src/usr.bin/m4/main.c 2003/06/03 02:56:10 1.55 +++ src/usr.bin/m4/main.c 2003/06/10 22:20:48 1.56 @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.55 2003/06/03 02:56:10 millert Exp $ */ +/* $OpenBSD: main.c,v 1.56 2003/06/10 22:20:48 deraadt Exp $ */ /* $NetBSD: main.c,v 1.12 1997/02/08 23:54:49 cgd Exp $ */ /*- @@ -43,7 +43,7 @@ #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.55 2003/06/03 02:56:10 millert Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.56 2003/06/10 22:20:48 deraadt Exp $"; #endif #endif /* not lint */ @@ -305,7 +305,7 @@ * macro - the work horse.. */ static void -macro() +macro(void) { char token[MAXTOK+1]; int t, l; @@ -573,7 +573,7 @@ * within keywrds block. */ static void -initkwds() +initkwds(void) { size_t i; unsigned int h; @@ -642,7 +642,7 @@ static void -enlarge_stack() +enlarge_stack(void) { STACKMAX *= 2; mstack = realloc(mstack, sizeof(stae) * STACKMAX);