From: Ulrich Drepper Date: Sat, 10 May 2008 23:38:33 +0000 (+0000) Subject: * misc/truncate64.c (truncate64): Use __truncate not truncate. X-Git-Tag: upstream/2.30~14237 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b29899ae10cde6fd5f79ed3c3b1afe041d418bf0;p=external%2Fglibc.git * misc/truncate64.c (truncate64): Use __truncate not truncate. --- diff --git a/ChangeLog b/ChangeLog index 1bec632..fe72549 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-05-08 David S. Miller + * misc/truncate64.c (truncate64): Use __truncate not truncate. + * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel. (__ieee754_y0l): Likewise. * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise. diff --git a/NEWS b/NEWS index 2d8621a..92418d0 100644 --- a/NEWS +++ b/NEWS @@ -1,10 +1,15 @@ -GNU C Library NEWS -- history of user-visible changes. 2008-4-9 +GNU C Library NEWS -- history of user-visible changes. 2008-5-10 Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc. See the end for copying conditions. Please send GNU C library bug reports via using `glibc' in the "product" field. +Version 2.9 + +* Unified lookup for getaddrinfo: IPv4 and IPv6 addresses are now looked + up at the same time. + Version 2.8 * New locales: bo_CN, bo_IN. diff --git a/misc/truncate64.c b/misc/truncate64.c index d7e80dc..4a8a540 100644 --- a/misc/truncate64.c +++ b/misc/truncate64.c @@ -31,5 +31,5 @@ truncate64 (path, length) __set_errno (EINVAL); return -1; } - return truncate (path, (off_t) length); + return __truncate (path, (off_t) length); }