[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commits] r23155 - in /fsf/trunk/libc: ./ manual/ stdio-common/ sysdeps/mach/hurd/ sysdeps/mach/hurd/i386/
- To: commits@xxxxxxxxxx
- Subject: [Commits] r23155 - in /fsf/trunk/libc: ./ manual/ stdio-common/ sysdeps/mach/hurd/ sysdeps/mach/hurd/i386/
- From: eglibc@xxxxxxxxxx
- Date: Mon, 27 May 2013 00:02:00 -0000
Author: eglibc
Date: Mon May 27 00:01:59 2013
New Revision: 23155
Log:
Import glibc-mainline for 2013-05-27
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/manual/platform.texi
fsf/trunk/libc/stdio-common/bug26.c
fsf/trunk/libc/sysdeps/mach/hurd/dl-sysdep.c
fsf/trunk/libc/sysdeps/mach/hurd/i386/init-first.c
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Mon May 27 00:01:59 2013
@@ -1,3 +1,15 @@
+2013-05-26 Thomas Schwinge <thomas@xxxxxxxxxxxxxxxx>
+
+ * stdio-common/bug26.c (main): Correct fscanf template.
+
+ * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
+ declare _dl_skip_args.
+
+ * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
+ Don't declare.
+
+ * manual/platform.texi: Add missing @end deftypefun.
+
2013-05-24 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
[BZ #15529]
Modified: fsf/trunk/libc/manual/platform.texi
==============================================================================
--- fsf/trunk/libc/manual/platform.texi (original)
+++ fsf/trunk/libc/manual/platform.texi Mon May 27 00:01:59 2013
@@ -57,6 +57,7 @@
dedicated to the executing processor are released until all outstanding storage
accesses to cacheable storage for which the data is not in the cache have been
completed.
+@end deftypefun
@deftypefun {void} __ppc_set_ppr_med (void)
Set the Program Priority Register to medium value (default).
Modified: fsf/trunk/libc/stdio-common/bug26.c
==============================================================================
--- fsf/trunk/libc/stdio-common/bug26.c (original)
+++ fsf/trunk/libc/stdio-common/bug26.c Mon May 27 00:01:59 2013
@@ -28,8 +28,9 @@
char s[] = "+.e";
f = fmemopen (s, strlen (s), "r");
- /* This should fail to parse a float and leave 'e' in the input. */
- lost |= (fscanf (f, "%f", &d) != 0);
+ /* This should fail to parse a floating-point number, and leave 'e' in the
+ input. */
+ lost |= (fscanf (f, "%lf", &d) != 0);
c = fgetc (f);
lost |= c != 'e';
puts (lost ? "Test FAILED!" : "Test succeeded.");
Modified: fsf/trunk/libc/sysdeps/mach/hurd/dl-sysdep.c
==============================================================================
--- fsf/trunk/libc/sysdeps/mach/hurd/dl-sysdep.c (original)
+++ fsf/trunk/libc/sysdeps/mach/hurd/dl-sysdep.c Mon May 27 00:01:59 2013
@@ -123,7 +123,6 @@
{
void go (intptr_t *argdata)
{
- extern unsigned int _dl_skip_args; /* rtld.c */
char **p;
/* Cache the information in various global variables. */
Modified: fsf/trunk/libc/sysdeps/mach/hurd/i386/init-first.c
==============================================================================
--- fsf/trunk/libc/sysdeps/mach/hurd/i386/init-first.c (original)
+++ fsf/trunk/libc/sysdeps/mach/hurd/i386/init-first.c Mon May 27 00:01:59 2013
@@ -35,9 +35,6 @@
extern void __init_misc (int, char **, char **);
#ifdef USE_NONOPTION_FLAGS
extern void __getopt_clean_environment (char **);
-#endif
-#ifndef SHARED
-extern void _dl_non_dynamic_init (void) internal_function;
#endif
extern void __libc_global_ctors (void);
_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits