mirror of
https://sourceware.org/git/glibc.git
synced 2025-06-06 11:41:02 +03:00
Update.
* assert/assert.h (assert): Use !! in front of expression to allow use of pointers.
This commit is contained in:
parent
41d70e88b1
commit
9b0a6e9600
@ -1,5 +1,8 @@
|
|||||||
2003-08-14 Ulrich Drepper <drepper@redhat.com>
|
2003-08-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* assert/assert.h (assert): Use !! in front of expression to allow
|
||||||
|
use of pointers.
|
||||||
|
|
||||||
* iconvdata/cp932.c: Fixed checking of a few border of code areas.
|
* iconvdata/cp932.c: Fixed checking of a few border of code areas.
|
||||||
Changed conversion of JIS X 0201 from using a table to calculating.
|
Changed conversion of JIS X 0201 from using a table to calculating.
|
||||||
* iconvdata/euc-jp-ms.c: Fixed conversion table and rewrote
|
* iconvdata/euc-jp-ms.c: Fixed conversion table and rewrote
|
||||||
|
@ -89,7 +89,7 @@ __END_DECLS
|
|||||||
enough estimate for when the feature became available. */
|
enough estimate for when the feature became available. */
|
||||||
# if __GNUC_PREREQ (3, 0)
|
# if __GNUC_PREREQ (3, 0)
|
||||||
# define assert(expr) \
|
# define assert(expr) \
|
||||||
(__ASSERT_VOID_CAST (__builtin_expect (expr, 1) ? 0 : \
|
(__ASSERT_VOID_CAST (__builtin_expect (!!(expr), 1) ? 0 : \
|
||||||
(__assert_fail (__STRING(expr), __FILE__, __LINE__, \
|
(__assert_fail (__STRING(expr), __FILE__, __LINE__, \
|
||||||
__ASSERT_FUNCTION), 0)))
|
__ASSERT_FUNCTION), 0)))
|
||||||
# else
|
# else
|
||||||
|
15282
localedata/charmaps/EUC-JP-MS
Normal file
15282
localedata/charmaps/EUC-JP-MS
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user