=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/unifdef/unifdef.c,v retrieving revision 1.14 retrieving revision 1.15 diff -c -r1.14 -r1.15 *** src/usr.bin/unifdef/unifdef.c 2009/10/27 23:59:46 1.14 --- src/usr.bin/unifdef/unifdef.c 2012/03/04 04:05:15 1.15 *************** *** 1,4 **** ! /* $OpenBSD: unifdef.c,v 1.14 2009/10/27 23:59:46 deraadt Exp $ */ /* * Copyright (c) 2002, 2003 Tony Finch * Copyright (c) 1985, 1993 --- 1,4 ---- ! /* $OpenBSD: unifdef.c,v 1.15 2012/03/04 04:05:15 fgsch Exp $ */ /* * Copyright (c) 2002, 2003 Tony Finch * Copyright (c) 1985, 1993 *************** *** 183,189 **** static void error(const char *); static int findsym(const char *); static void flushline(bool); ! static Linetype getline(void); static Linetype ifeval(const char **); static void ignoreoff(void); static void ignoreon(void); --- 183,189 ---- static void error(const char *); static int findsym(const char *); static void flushline(bool); ! static Linetype get_line(void); static Linetype ifeval(const char **); static void ignoreoff(void); static void ignoreon(void); *************** *** 663,669 **** for (;;) { linenum++; ! lineval = getline(); trans = trans_table[ifstate[depth]][lineval]; if (trans == NULL) break; --- 663,669 ---- for (;;) { linenum++; ! lineval = get_line(); trans = trans_table[ifstate[depth]][lineval]; if (trans == NULL) break; *************** *** 681,687 **** * parser state between calls in a global variable. */ static Linetype ! getline(void) { const char *cp; int cursym; --- 681,687 ---- * parser state between calls in a global variable. */ static Linetype ! get_line(void) { const char *cp; int cursym;