about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-11-25 00:14:23 +0000
committerRoland McGrath <roland@gnu.org>2002-11-25 00:14:23 +0000
commit983d597e9f247ebd4b40d91a06d7e9aae7d7428c (patch)
treeadeb151ff90e33c985de246d43a217ca3df2bd22
parentbf2cc5fb028fecf8d6b1adffd952f7402f685923 (diff)
downloadglibc-983d597e9f247ebd4b40d91a06d7e9aae7d7428c.tar.gz
glibc-983d597e9f247ebd4b40d91a06d7e9aae7d7428c.tar.xz
glibc-983d597e9f247ebd4b40d91a06d7e9aae7d7428c.zip
* include/errno.h (__set_errno): Define as errno = val
	unconditionally.
-rw-r--r--ChangeLog5
-rw-r--r--include/errno.h6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9895ffbdab..55934388b6 100644
--- 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.
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 */