mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
Update.
* ctype/ctype.h (_ISbit): Protect use of parameter with * wctype/wctype.h (_ISwbit): Likewise.
This commit is contained in:
parent
9c8cfaf543
commit
6685edd3c6
@ -1,7 +1,8 @@
|
||||
1998-12-05 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* wctype/wctype.h (_ISwbit): Protext use of parameter with
|
||||
* ctype/ctype.h (_ISbit): Protect use of parameter with
|
||||
parentheses.
|
||||
* wctype/wctype.h (_ISwbit): Likewise.
|
||||
|
||||
* locale/Versions: Make experimental locale interface available in
|
||||
GLIBC_2.1.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1991, 92, 93, 95, 96, 97 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1991, 92, 93, 95, 96, 97, 98 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
|
||||
@ -39,9 +39,9 @@ __BEGIN_DECLS
|
||||
|
||||
# include <endian.h>
|
||||
# if __BYTE_ORDER == __BIG_ENDIAN
|
||||
# define _ISbit(bit) (1 << bit)
|
||||
# define _ISbit(bit) (1 << (bit))
|
||||
# else /* __BYTE_ORDER == __LITTLE_ENDIAN */
|
||||
# define _ISbit(bit) (bit < 8 ? ((1 << bit) << 8) : ((1 << bit) >> 8))
|
||||
# define _ISbit(bit) ((bit) < 8 ? ((1 << (bit)) << 8) : ((1 << (bit)) >> 8))
|
||||
# endif
|
||||
|
||||
enum
|
||||
|
Loading…
Reference in New Issue
Block a user