This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-363-g8129bf7


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  8129bf7732decf4472caf8b1c339e4abd072f0ab (commit)
      from  a329844ff8adaffc25343a6f9bb12a3a9e841018 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8129bf7732decf4472caf8b1c339e4abd072f0ab

commit 8129bf7732decf4472caf8b1c339e4abd072f0ab
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Nov 11 21:04:28 2016 +0000

    Make SH <sys/user.h> self-contained.
    
    The check-installed-headers tests show up that the SH <sys/user.h> is
    not self-contained, using size_t without including any header that
    defines it.  This patch fixes it by including <stddef.h>, as done for
    other architectures' versions of this header.
    
    Tested for SH3 and SH4 (compilation only).
    
    	* sysdeps/unix/sysv/linux/sh/sys/user.h: Include <stddef.h>.

diff --git a/ChangeLog b/ChangeLog
index 262069d..7c72585 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-11  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/sh/sys/user.h: Include <stddef.h>.
+
 2016-11-10  Chris Metcalf  <cmetcalf@mellanox.com>
 
 	* sysdeps/tile/tilepro/atomic-machine.h (atomic_store_relaxed)
diff --git a/sysdeps/unix/sysv/linux/sh/sys/user.h b/sysdeps/unix/sysv/linux/sh/sys/user.h
index 47b87ae..2999b03 100644
--- a/sysdeps/unix/sysv/linux/sh/sys/user.h
+++ b/sysdeps/unix/sysv/linux/sh/sys/user.h
@@ -19,6 +19,7 @@
 #define _SYS_USER_H	1
 
 #include <asm/ptrace.h>
+#include <stddef.h>
 
 /* asm/ptrace.h polutes the namespace.  */
 #undef PTRACE_GETREGS

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                             |    4 ++++
 sysdeps/unix/sysv/linux/sh/sys/user.h |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]