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-382-g049cc48


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  049cc4855ac09222a460418c9bce589cd12f7294 (commit)
      from  85d3192140d1607a3cbf736e28fea2ed60a4413a (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=049cc4855ac09222a460418c9bce589cd12f7294

commit 049cc4855ac09222a460418c9bce589cd12f7294
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu Nov 17 14:15:03 2016 +0000

    Make Alpha <sys/user.h> self-contained.
    
    The check-installed-headers tests show up that the Alpha <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 Alpha (compilation only).
    
    	* sysdeps/unix/sysv/linux/alpha/sys/user.h: Include <stddef.h>.

diff --git a/ChangeLog b/ChangeLog
index fe64cc2..d3b4844 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-11-17  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/alpha/sys/user.h: Include <stddef.h>.
+
 2016-11-16  Joseph Myers  <joseph@codesourcery.com>
 
 	* conform/Makefile (linknamespace-libs): Rename to
diff --git a/sysdeps/unix/sysv/linux/alpha/sys/user.h b/sysdeps/unix/sysv/linux/alpha/sys/user.h
index 1a7c9c4..3d0d76b 100644
--- a/sysdeps/unix/sysv/linux/alpha/sys/user.h
+++ b/sysdeps/unix/sysv/linux/alpha/sys/user.h
@@ -23,6 +23,7 @@
    than gdb/strace unless you know what you are doing. */
 
 #include <asm/reg.h>
+#include <stddef.h>
 
 struct user
 {

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

Summary of changes:
 ChangeLog                                |    4 ++++
 sysdeps/unix/sysv/linux/alpha/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]