diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-06 19:17:20 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-02-06 19:17:20 +0000 |
commit | ea8a3d42ab21f5184b89f8b2f2872bc73e0f0f02 (patch) | |
tree | 5d8f69867930ebad552c1d9848a2cb64cee5873b /libgloss/rs6000 | |
parent | d7ed877ba3bf05bc13b7f90000d1d6e7a299c85d (diff) | |
download | cygnal-ea8a3d42ab21f5184b89f8b2f2872bc73e0f0f02.tar.gz cygnal-ea8a3d42ab21f5184b89f8b2f2872bc73e0f0f02.tar.bz2 cygnal-ea8a3d42ab21f5184b89f8b2f2872bc73e0f0f02.zip |
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.c | 11 |
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; } |