=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/bc/bc.y,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/bc/bc.y 2003/09/26 19:26:16 1.6 --- src/usr.bin/bc/bc.y 2003/09/28 07:45:55 1.7 *************** *** 1,5 **** %{ ! /* $OpenBSD: bc.y,v 1.6 2003/09/26 19:26:16 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek --- 1,5 ---- %{ ! /* $OpenBSD: bc.y,v 1.7 2003/09/28 07:45:55 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek *************** *** 31,37 **** */ #ifndef lint ! static const char rcsid[] = "$OpenBSD: bc.y,v 1.6 2003/09/26 19:26:16 deraadt Exp $"; #endif /* not lint */ #include --- 31,37 ---- */ #ifndef lint ! static const char rcsid[] = "$OpenBSD: bc.y,v 1.7 2003/09/28 07:45:55 otto Exp $"; #endif /* not lint */ #include *************** *** 79,85 **** static size_t instr_sz = 0; static struct tree *instructions = NULL; ! static size_t current = 0; static int macro_char = '0'; static int reset_macro_char = '0'; static int nesting = 0; --- 79,85 ---- static size_t instr_sz = 0; static struct tree *instructions = NULL; ! static ssize_t current = 0; static int macro_char = '0'; static int reset_macro_char = '0'; static int nesting = 0; *************** *** 592,598 **** } } ! static int cs(const char *str) { grow(); --- 592,598 ---- } } ! static ssize_t cs(const char *str) { grow(); *************** *** 601,607 **** return current++; } ! static int as(const char *str) { grow(); --- 601,607 ---- return current++; } ! static ssize_t as(const char *str) { grow();