mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-24 14:41:06 +08:00
Remove bare use of __attribute__ in include/errno.h.
This is just a style fix; we always prefer the shorthand macros over bare uses of __attribute__, even in private headers. * include/errno.h (__errno_location): Use __attribute_const__ instead of bare __attribute__.
This commit is contained in:
parent
65b6d8b79c
commit
b4971123e9
@ -1,3 +1,8 @@
|
|||||||
|
2017-06-09 Zack Weinberg <zackw@panix.com>
|
||||||
|
|
||||||
|
* include/errno.h (__errno_location): Use __attribute_const__
|
||||||
|
instead of bare __attribute__.
|
||||||
|
|
||||||
2017-06-09 Zack Weinberg <zackw@panix.com>
|
2017-06-09 Zack Weinberg <zackw@panix.com>
|
||||||
|
|
||||||
* Makeconfig (dl-tunable-list.h): Generate using a stamp file.
|
* Makeconfig (dl-tunable-list.h): Generate using a stamp file.
|
||||||
|
@ -39,7 +39,7 @@ extern __thread int errno attribute_tls_model_ie;
|
|||||||
# define __set_errno(val) (errno = (val))
|
# define __set_errno(val) (errno = (val))
|
||||||
|
|
||||||
# ifndef __ASSEMBLER__
|
# ifndef __ASSEMBLER__
|
||||||
extern int *__errno_location (void) __THROW __attribute__ ((__const__))
|
extern int *__errno_location (void) __THROW __attribute_const__
|
||||||
# if RTLD_PRIVATE_ERRNO
|
# if RTLD_PRIVATE_ERRNO
|
||||||
attribute_hidden
|
attribute_hidden
|
||||||
# endif
|
# endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user