about summary refs log tree commit diff
path: root/include/errno.h
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2017-06-09 09:37:55 -0400
committerZack Weinberg <zackw@panix.com>2017-06-09 09:37:55 -0400
commitb4971123e9e681126cb8eaae6d5de56be84c9e98 (patch)
tree4e2c3a6cc21bad2a21900e667b3d36d115a5f5ae /include/errno.h
parent65b6d8b79c20bbf83209c6a23645cf5422170e5d (diff)
downloadglibc-b4971123e9e681126cb8eaae6d5de56be84c9e98.tar.gz
glibc-b4971123e9e681126cb8eaae6d5de56be84c9e98.tar.xz
glibc-b4971123e9e681126cb8eaae6d5de56be84c9e98.zip
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__.
Diffstat (limited to 'include/errno.h')
-rw-r--r--include/errno.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/errno.h b/include/errno.h
index 73fc32e5e0..f140631b31 100644
--- a/include/errno.h
+++ b/include/errno.h
@@ -39,7 +39,7 @@ extern __thread int errno attribute_tls_model_ie;
 # define __set_errno(val) (errno = (val))
 
 # ifndef __ASSEMBLER__
-extern int *__errno_location (void) __THROW __attribute__ ((__const__))
+extern int *__errno_location (void) __THROW __attribute_const__
 #  if RTLD_PRIVATE_ERRNO
      attribute_hidden
 #  endif