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-394-g65a77b5


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  65a77b558513ab54018b237f6570d27d12b6ee97 (commit)
      from  6c9e1be87a37bfac0bf6c80a38171383ac3527e6 (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=65a77b558513ab54018b237f6570d27d12b6ee97

commit 65a77b558513ab54018b237f6570d27d12b6ee97
Author: Andreas Schwab <schwab@suse.de>
Date:   Tue Nov 22 11:56:08 2016 +0100

    Fix multiple definitions of mk[o]stemp[s]64

diff --git a/ChangeLog b/ChangeLog
index 4bc9635..6053109 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-11-22  Andreas Schwab  <schwab@suse.de>
+
+	* misc/mkstemp.c: Include <fcntl.h>.
+	* misc/mkstemps.c: Likewise.
+	* misc/mkostemp.c: Likewise.
+	* misc/mkostemps.c: Likewise.
+
 2016-11-22  Adhemerval Zanella  <adhemerva.zanella@linaro.org>
 
 	[BZ #20847]
diff --git a/misc/mkostemp.c b/misc/mkostemp.c
index c990bbd..fee2b66 100644
--- a/misc/mkostemp.c
+++ b/misc/mkostemp.c
@@ -15,6 +15,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 
diff --git a/misc/mkostemps.c b/misc/mkostemps.c
index fcc6053..a7a87bf 100644
--- a/misc/mkostemps.c
+++ b/misc/mkostemps.c
@@ -16,6 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
+#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 
diff --git a/misc/mkstemp.c b/misc/mkstemp.c
index 69c6c00..e125803 100644
--- a/misc/mkstemp.c
+++ b/misc/mkstemp.c
@@ -15,6 +15,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 
diff --git a/misc/mkstemps.c b/misc/mkstemps.c
index 1f46ef5..217606d 100644
--- a/misc/mkstemps.c
+++ b/misc/mkstemps.c
@@ -16,6 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <errno.h>
+#include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
 

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

Summary of changes:
 ChangeLog        |    7 +++++++
 misc/mkostemp.c  |    1 +
 misc/mkostemps.c |    1 +
 misc/mkstemp.c   |    1 +
 misc/mkstemps.c  |    1 +
 5 files changed, 11 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]