1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

update from main archive 961016

This commit is contained in:
Ulrich Drepper
1996-10-17 01:51:33 +00:00
parent 85e960f706
commit 5415516c87
10 changed files with 49 additions and 51 deletions

View File

@@ -46,7 +46,7 @@ __errno = errno /* This name is expected by the MT code. */
/* The syscall stubs jump here when they detect an error. */
ENTRY(__syscall_error)
ENTRY (__syscall_error)
neg.l %d0
move.l %d0, errno
#ifdef _LIBC_REENTRANT
@@ -59,14 +59,15 @@ ENTRY(__syscall_error)
return a pointer. */
move.l %d0, %a0
rts
.size __syscall_error, . - __syscall_error
PSEUDO_END (__syscall_error)
#endif /* PIC */
ERRNO(__errno_location)
ENTRY (__errno_location)
CALL_MCOUNT
#ifdef PIC
move.l (%pc, errno@GOTPC), %a0
#else
lea errno, %a0
#endif
rts
.size __errno_location, . - __errno_location
PSEUDO_END (__errno_location)