|
|
@ -20,26 +20,8 @@ |
|
|
|
# |
|
|
|
# --- ROCK-COPYRIGHT-NOTE-END --- |
|
|
|
|
|
|
|
Rene Rebe: This fixes compilation with gcc-3.3 |
|
|
|
Clifford: And the soinit.c thing is a workaroung for an x86_64 ICE |
|
|
|
Clifford: The soinit.c thing is a workaroung for an x86_64 ICE. |
|
|
|
|
|
|
|
--- glibc-2.3.2/stdio-common/sscanf.c 2002-08-10 20:09:08.000000000 +0200
|
|
|
|
+++ glibc-2.3.2/stdio-common/sscanf.c 2003-05-13 09:46:19.000000000 +0200
|
|
|
|
@@ -27,12 +27,10 @@
|
|
|
|
/* Read formatted input from S, according to the format string FORMAT. */ |
|
|
|
/* VARARGS2 */ |
|
|
|
int |
|
|
|
-sscanf (s, format)
|
|
|
|
- const char *s;
|
|
|
|
- const char *format;
|
|
|
|
+sscanf (const char *s, const char *format, ... )
|
|
|
|
{ |
|
|
|
- va_list arg;
|
|
|
|
int done; |
|
|
|
+ va_list arg;
|
|
|
|
|
|
|
|
va_start (arg, format); |
|
|
|
done = __vsscanf (s, format, arg); |
|
|
|
--- ./elf/soinit.c.orig Tue Feb 24 15:55:00 2004
|
|
|
|
+++ ./elf/soinit.c Tue Feb 24 16:31:08 2004
|
|
|
|
@@ -25,7 +25,7 @@
|
|
|
|