=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/bc/scan.l,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/bc/scan.l 2003/09/25 19:32:44 1.1 --- src/usr.bin/bc/scan.l 2003/09/26 07:02:52 1.2 *************** *** 1,5 **** %{ ! /* $OpenBSD: scan.l,v 1.1 2003/09/25 19:32:44 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek --- 1,5 ---- %{ ! /* $OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek *************** *** 18,24 **** */ #ifndef lint ! static const char rcsid[] = "$OpenBSD: scan.l,v 1.1 2003/09/25 19:32:44 otto Exp $"; #endif /* not lint */ #include --- 18,24 ---- */ #ifndef lint ! static const char rcsid[] = "$OpenBSD: scan.l,v 1.2 2003/09/26 07:02:52 deraadt Exp $"; #endif /* not lint */ #include *************** *** 30,36 **** int lineno; ! static char *strbuf = NULL; static size_t strbuf_sz = 1; static bool dot_seen; --- 30,36 ---- int lineno; ! static char *strbuf = NULL; static size_t strbuf_sz = 1; static bool dot_seen; *************** *** 102,108 **** } "auto" return AUTO; ! "break" return BREAK; "define" return DEFINE; "ibase" return IBASE; "if" return IF; --- 102,108 ---- } "auto" return AUTO; ! "break" return BREAK; "define" return DEFINE; "ibase" return IBASE; "if" return IF;