lkundrak / rpms / busybox

Forked from rpms/busybox 4 years ago
Clone
Blob Blame History Raw
--- busybox-1.13.2/uClibc-0.9.30.1/extra/scripts/unifdef.c	2008/12/28 12:06:04	24572
+++ busybox-1.13.2/uClibc-0.9.30.1/extra/scripts/unifdef.c	2009/04/06 06:40:57	25971
@@ -206,7 +206,7 @@
 static void             error(const char *);
 static int              findsym(const char *);
 static void             flushline(bool);
-static Linetype         getline(void);
+static Linetype         get_line(void);
 static Linetype         ifeval(const char **);
 static void             ignoreoff(void);
 static void             ignoreon(void);
@@ -512,7 +512,7 @@
 
 	for (;;) {
 		linenum++;
-		lineval = getline();
+		lineval = get_line();
 		trans_table[ifstate[depth]][lineval]();
 		debug("process %s -> %s depth %d",
 		    linetype_name[lineval],
@@ -526,7 +526,7 @@
  * help from skipcomment().
  */
 static Linetype
-getline(void)
+get_line(void)
 {
 	const char *cp;
 	int cursym;