=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/indent/lexi.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/indent/lexi.c 2003/09/26 22:23:28 1.10 --- src/usr.bin/indent/lexi.c 2004/07/20 03:50:26 1.11 *************** *** 1,4 **** ! /* $OpenBSD: lexi.c,v 1.10 2003/09/26 22:23:28 tedu Exp $ */ /* * Copyright (c) 1980, 1993 --- 1,4 ---- ! /* $OpenBSD: lexi.c,v 1.11 2004/07/20 03:50:26 deraadt Exp $ */ /* * Copyright (c) 1980, 1993 *************** *** 34,40 **** #ifndef lint /*static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";*/ ! static char rcsid[] = "$OpenBSD: lexi.c,v 1.10 2003/09/26 22:23:28 tedu Exp $"; #endif /* not lint */ /* --- 34,40 ---- #ifndef lint /*static char sccsid[] = "@(#)lexi.c 8.1 (Berkeley) 6/6/93";*/ ! static char rcsid[] = "$OpenBSD: lexi.c,v 1.11 2004/07/20 03:50:26 deraadt Exp $"; #endif /* not lint */ /* *************** *** 120,126 **** int ! lexi() { int unary_delim; /* this is set to 1 if the current token * forces a following operator to be unary */ --- 120,126 ---- int ! lexi(void) { int unary_delim; /* this is set to 1 if the current token * forces a following operator to be unary */ *************** *** 562,570 **** * Add the given keyword to the keyword table, using val as the keyword type */ void ! addkey(key, val) ! char *key; ! int val; { struct templ *p; int i = 0; --- 562,568 ---- * Add the given keyword to the keyword table, using val as the keyword type */ void ! addkey(char *key, int val) { struct templ *p; int i = 0;