You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							47 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							47 lines
						
					
					
						
							1.7 KiB
						
					
					
				# --- SDE-COPYRIGHT-NOTE-BEGIN --- | 
						|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. | 
						|
# | 
						|
# Filename: package/.../uclibc/160-unifdef_fix.patch | 
						|
# Copyright (C) 2009 The OpenSDE Project | 
						|
# | 
						|
# More information can be found in the files COPYING and README. | 
						|
# | 
						|
# This patch file is dual-licensed. It is available under the license the | 
						|
# patched project is licensed under, as long as it is an OpenSource license | 
						|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | 
						|
# of the GNU General Public License as published by the Free Software | 
						|
# Foundation; either version 2 of the License, or (at your option) any later | 
						|
# version. | 
						|
# --- SDE-COPYRIGHT-NOTE-END --- | 
						|
 | 
						|
https://dev.openwrt.org/browser/trunk/toolchain/uClibc/patches-0.9.30.1/160-unifdef_fix.patch | 
						|
--- ./extra/scripts/unifdef.c.orig 2008-04-28 01:10:00.000000000 +0200 | 
						|
+++ ./extra/scripts/unifdef.c 2009-08-25 15:20:08.000000000 +0200 | 
						|
@@ -206,7 +206,7 @@ static void             done(void); | 
						|
 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 @@ process(void) | 
						|
  | 
						|
 	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 @@ process(void) | 
						|
  * help from skipcomment(). | 
						|
  */ | 
						|
 static Linetype | 
						|
-getline(void) | 
						|
+get_line(void) | 
						|
 { | 
						|
 	const char *cp; | 
						|
 	int cursym; | 
						|
 | 
						|
 |