* include/errno.h (__set_errno): Define as errno = val
authorRoland McGrath <roland@gnu.org>
Mon, 25 Nov 2002 00:14:23 +0000 (00:14 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 25 Nov 2002 00:14:23 +0000 (00:14 +0000)
unconditionally.

ChangeLog
include/errno.h

index 9895ffb..5593438 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-25  Jakub Jelinek  <jakub@redhat.com>
+
+       * include/errno.h (__set_errno): Define as errno = val
+       unconditionally.
+
 2002-11-24  Roland McGrath  <roland@redhat.com>
 
        * sysdeps/posix/readv.c: Include <errno.h>, use __set_errno macro.
index 1663538..05888c1 100644 (file)
@@ -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 */