--- glibc-2.3.2/csu/Makefile.orig 2002-12-31 23:24:37.000000000 +0100 +++ glibc-2.3.2/csu/Makefile 2003-06-01 22:13:40.000000000 +0200 @@ -222,13 +222,13 @@ if [ -z "$$os" ]; then \ os=Linux; \ fi; \ - echo "\"Compiled on a $$os $$version system" \ - "on `date +%Y-%m-%d`.\\n\"" ;; \ + echo -e "\"Compiled on a $$os $$version system" \ + "on `date +%Y-%m-%d`.\\\n\"" ;; \ *) ;; \ esac; \ files="$(all-Banner-files)"; \ if test -n "$$files"; then \ - echo "\"Available extensions:\\n\""; \ + echo -e "\"Available extensions:\\\n\""; \ sed -e '/^#/d' -e 's/^[[:space:]]*/ /' \ -e 's/\(^.*$$\)/\"\1\\n\"/' $$files; \ fi) > $@T --- glibc-2.3.2/stdio-common/sscanf.c.orig 2002-08-10 20:09:08.000000000 +0200 +++ glibc-2.3.2/stdio-common/sscanf.c 2003-06-01 22:28:24.000000000 +0200 @@ -27,9 +27,7 @@ /* 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;