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