mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-17 13:00:43 +08:00
* misc/truncate64.c (truncate64): Use __truncate not truncate.
This commit is contained in:
parent
c5ee217f09
commit
b29899ae10
@ -1,5 +1,7 @@
|
|||||||
2008-05-08 David S. Miller <davem@davemloft.net>
|
2008-05-08 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
|
* misc/truncate64.c (truncate64): Use __truncate not truncate.
|
||||||
|
|
||||||
* sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
|
* sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee751_j0l): Use __finitel.
|
||||||
(__ieee754_y0l): Likewise.
|
(__ieee754_y0l): Likewise.
|
||||||
* sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
|
* sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
|
||||||
|
7
NEWS
7
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.
|
Copyright (C) 1992-2007, 2008 Free Software Foundation, Inc.
|
||||||
See the end for copying conditions.
|
See the end for copying conditions.
|
||||||
|
|
||||||
Please send GNU C library bug reports via <http://sources.redhat.com/bugzilla/>
|
Please send GNU C library bug reports via <http://sources.redhat.com/bugzilla/>
|
||||||
using `glibc' in the "product" field.
|
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
|
Version 2.8
|
||||||
|
|
||||||
* New locales: bo_CN, bo_IN.
|
* New locales: bo_CN, bo_IN.
|
||||||
|
@ -31,5 +31,5 @@ truncate64 (path, length)
|
|||||||
__set_errno (EINVAL);
|
__set_errno (EINVAL);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return truncate (path, (off_t) length);
|
return __truncate (path, (off_t) length);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user