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.21-373-g5be9111


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  5be91118f623db41c74c5fdaebf12200a779e6e6 (commit)
      from  ec0c23a4bebd4024ee5d61ecd5506d4a6ca9e01e (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=5be91118f623db41c74c5fdaebf12200a779e6e6

commit 5be91118f623db41c74c5fdaebf12200a779e6e6
Author: Wilco Dijkstra <wdijkstr@arm.com>
Date:   Wed May 20 12:48:48 2015 +0000

    Add missing math_private includes.

diff --git a/ChangeLog b/ChangeLog
index c1a73c8..e13e166 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-05-20  Wilco Dijkstra  <wdijkstr@arm.com>
+
+	* math/s_cproj.c: Add include "math_private.h".
+	* math/s_cprojf.c: Likewise.
+	* math/s_cprojl.c: Likewise.
+
 2015-05-19  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #18244]
diff --git a/math/s_cproj.c b/math/s_cproj.c
index 80615a6..bf2cfc4 100644
--- a/math/s_cproj.c
+++ b/math/s_cproj.c
@@ -19,6 +19,7 @@
 
 #include <complex.h>
 #include <math.h>
+#include <math_private.h>
 
 
 __complex__ double
diff --git a/math/s_cprojf.c b/math/s_cprojf.c
index 39542b2..531d10e 100644
--- a/math/s_cprojf.c
+++ b/math/s_cprojf.c
@@ -19,6 +19,7 @@
 
 #include <complex.h>
 #include <math.h>
+#include <math_private.h>
 
 
 __complex__ float
diff --git a/math/s_cprojl.c b/math/s_cprojl.c
index dc5a038..32292a4 100644
--- a/math/s_cprojl.c
+++ b/math/s_cprojl.c
@@ -19,6 +19,7 @@
 
 #include <complex.h>
 #include <math.h>
+#include <math_private.h>
 
 
 __complex__ long double

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

Summary of changes:
 ChangeLog       |    6 ++++++
 math/s_cproj.c  |    1 +
 math/s_cprojf.c |    1 +
 math/s_cprojl.c |    1 +
 4 files changed, 9 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]