summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-07-22 05:26:10 +0000
committerRoland McGrath <roland@gnu.org>2005-07-22 05:26:10 +0000
commit8075c26a4cf5ee1db6de4a27dc3d50c7cc36c9b4 (patch)
tree321af75dfc59fb444877f9915d0b94292448d894
parent9b7265a7943cc11b773581ea46380becba2eebcb (diff)
Updated to fedora-glibc-20050722T0433
-rw-r--r--ChangeLog11
-rw-r--r--debug/getgroups_chk.c2
-rw-r--r--fedora/branch.mk6
-rw-r--r--stdio-common/fxprintf.c1
-rw-r--r--stdlib/Makefile2
-rw-r--r--wcsmbs/Makefile4
6 files changed, 20 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 01dd07a0b7..2d1bc63dea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,20 @@
+2005-07-21 Roland McGrath <roland@redhat.com>
+
+ * stdlib/Makefile (headers): Move bits/wchar.h to ...
+ * wcsmbs/Makefile (headers): ... here. Add bits/wchar2.h too.
+
2005-07-21 Jakub Jelinek <jakub@redhat.com>
* wcsmbs/bits/wchar2.h (swprintf): Remove format argument.
* debug/tst-chk1.c (do_test): Add test for swprintf with format
being the last argument.
+2005-07-21 Thorsten Kukuk <kukuk@suse.de>
+
+ * debug/getgroups_chk.c (__getgroups_chk): Fix return value.
+
+ * stdio-common/fxprintf.c: Include string.h.
+
2005-07-20 Ulrich Drepper <drepper@redhat.com>
* sysdeps/x86_64/fpu/libm-test-ulps: Adjust expected atan2f results.
diff --git a/debug/getgroups_chk.c b/debug/getgroups_chk.c
index 6401b023d3..c877ddb9ca 100644
--- a/debug/getgroups_chk.c
+++ b/debug/getgroups_chk.c
@@ -20,7 +20,7 @@
#include <unistd.h>
-char *
+int
__getgroups_chk (int size, __gid_t list[], size_t listlen)
{
if (__builtin_expect (size * sizeof (__gid_t) > listlen, 0))
diff --git a/fedora/branch.mk b/fedora/branch.mk
index c00168229f..1c1feacc42 100644
--- a/fedora/branch.mk
+++ b/fedora/branch.mk
@@ -1,5 +1,7 @@
# This file is updated automatically by Makefile.
glibc-branch := fedora
glibc-base := HEAD
-fedora-sync-date := 2005-07-21 08:14 UTC
-fedora-sync-tag := fedora-glibc-20050721T0814
+DIST_BRANCH := devel
+COLLECTION := dist-fc4
+fedora-sync-date := 2005-07-22 04:33 UTC
+fedora-sync-tag := fedora-glibc-20050722T0433
diff --git a/stdio-common/fxprintf.c b/stdio-common/fxprintf.c
index 298e5f22b0..3b3cc5cdda 100644
--- a/stdio-common/fxprintf.c
+++ b/stdio-common/fxprintf.c
@@ -22,6 +22,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <wchar.h>
+#include <string.h>
int
diff --git a/stdlib/Makefile b/stdlib/Makefile
index 841663129d..509a7b2228 100644
--- a/stdlib/Makefile
+++ b/stdlib/Makefile
@@ -22,7 +22,7 @@
subdir := stdlib
headers := stdlib.h alloca.h monetary.h fmtmsg.h ucontext.h sys/ucontext.h \
- inttypes.h stdint.h bits/wordsize.h bits/wchar.h \
+ inttypes.h stdint.h bits/wordsize.h \
errno.h sys/errno.h bits/errno.h bits/stdlib.h
routines := \
diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile
index 47a489a63c..d033de931c 100644
--- a/wcsmbs/Makefile
+++ b/wcsmbs/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1995-2000,2002,2003,2004,2005 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
#
subdir := wcsmbs
-headers := wchar.h
+headers := wchar.h bits/wchar.h bits/wchar2.h
distribute := wcwidth.h wcsmbsload.h
routines := wcscat wcschr wcscmp wcscpy wcscspn wcsdup wcslen wcsncat \