about summary refs log tree commit diff
path: root/include/errno.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/errno.h')
-rw-r--r--include/errno.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/errno.h b/include/errno.h
index 1663538661..05888c1363 100644
--- a/include/errno.h
+++ b/include/errno.h
@@ -16,7 +16,6 @@
 #  undef  errno
 #  define errno errno		/* For #ifndef errno tests.  */
 extern int errno attribute_hidden;
-#  define __set_errno(val) (errno = (val))
 
 # else
 
@@ -30,13 +29,12 @@ extern int errno attribute_hidden;
 #    define errno errno		/* For #ifndef errno tests.  */
 #   endif
 extern __thread int errno attribute_tls_model_ie;
-#   define __set_errno(val) (errno = (val))
-#  else
-#   define __set_errno(val) (*__errno_location ()) = (val)
 #  endif
 
 # endif	/* RTLD_PRIVATE_ERRNO */
 
+# define __set_errno(val) (errno = (val))
+
 #endif /* _ERRNO_H */
 
 #endif /* ! _ERRNO_H */