Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-02-06 22:17:20 +0300
committerJeff Johnston <jjohnstn@redhat.com>2001-02-06 22:17:20 +0300
commitea8a3d42ab21f5184b89f8b2f2872bc73e0f0f02 (patch)
tree5d8f69867930ebad552c1d9848a2cb64cee5873b /libgloss/rs6000
parentd7ed877ba3bf05bc13b7f90000d1d6e7a299c85d (diff)
2001-02-06 Will Cohen <wcohen@redhat.com>
* rs6000/sim-errno.c (__errno): Removed. (_cerror): Use re-entrant version of errno.
Diffstat (limited to 'libgloss/rs6000')
-rw-r--r--libgloss/rs6000/sim-errno.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/libgloss/rs6000/sim-errno.c b/libgloss/rs6000/sim-errno.c
index 9a771b4d0..29cb4a2be 100644
--- a/libgloss/rs6000/sim-errno.c
+++ b/libgloss/rs6000/sim-errno.c
@@ -14,13 +14,8 @@
* they apply.
*/
-int errno;
-
-int *
-__errno ()
-{
- return &errno;
-}
+#include <errno.h>
+#include <reent.h>
/* syscall handler branches here in case of error. */
@@ -28,6 +23,6 @@ int
_cerror (e)
int e;
{
- errno = e;
+ _REENT->_errno = e;
return -1;
}