=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/lex/ecs.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/lex/ecs.c 2001/06/17 07:30:42 1.4 --- src/usr.bin/lex/ecs.c 2001/11/19 19:02:14 1.5 *************** *** 1,4 **** ! /* $OpenBSD: ecs.c,v 1.4 2001/06/17 07:30:42 deraadt Exp $ */ /* ecs - equivalence class routines */ --- 1,4 ---- ! /* $OpenBSD: ecs.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ /* ecs - equivalence class routines */ *************** *** 28,34 **** * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ ! /* $Header: /cvsrepo/anoncvs/cvs/src/usr.bin/lex/ecs.c,v 1.4 2001/06/17 07:30:42 deraadt Exp $ */ #include "flexdef.h" --- 28,34 ---- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ ! /* $Header: /cvsrepo/anoncvs/cvs/src/usr.bin/lex/ecs.c,v 1.5 2001/11/19 19:02:14 mpech Exp $ */ #include "flexdef.h" *************** *** 144,150 **** { /* look for the symbol in the character class */ for ( ; j < lenccl; ++j ) { ! register int ccl_char; if ( NUL_mapping && ccls[j] == 0 ) ccl_char = NUL_mapping; --- 144,150 ---- { /* look for the symbol in the character class */ for ( ; j < lenccl; ++j ) { ! int ccl_char; if ( NUL_mapping && ccls[j] == 0 ) ccl_char = NUL_mapping;