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-206-gedbdf87


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  edbdf872aef70668badadb99df18a91c065b66d7 (commit)
      from  645f97ced4d4b35deda3f8bde0927f898b163f5d (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=edbdf872aef70668badadb99df18a91c065b66d7

commit edbdf872aef70668badadb99df18a91c065b66d7
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Sun Oct 2 10:24:32 2016 -0300

    Fix tst-memstream3 build failure
    
    Add string.h to avoid tst-memstream3 build failure in some environments:
    
     tst-memstream3.c:32:17: error: implicit declaration of function 'strcmp' [-Werror=implicit-function-declaration]
      # define STRCMP strcmp
                      ^
     tst-memstream3.c:96:7: note: in expansion of macro 'STRCMP'
        if (STRCMP (buf, W("b")) != 0)
    
    Checked on x86_64.
    
    	* libio/tst-memstream3.c: Include string.h.

diff --git a/ChangeLog b/ChangeLog
index 4b6a174..ac58557 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-10-02  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* libio/tst-memstream3.c: Include string.h.
+
 2016-09-30  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	[BZ #18241]
diff --git a/libio/tst-memstream3.c b/libio/tst-memstream3.c
index 38e5f7d..b55f256 100644
--- a/libio/tst-memstream3.c
+++ b/libio/tst-memstream3.c
@@ -18,6 +18,7 @@
 
 #include <mcheck.h>
 #include <stdio.h>
+#include <string.h>
 #include <stdarg.h>
 #include <errno.h>
 

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

Summary of changes:
 ChangeLog              |    4 ++++
 libio/tst-memstream3.c |    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]