]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
__setjmp is the same as _setjmp. Make the former a strong symbol and
authorUlrich Drepper <drepper@redhat.com>
Sun, 12 Oct 1997 03:40:26 +0000 (03:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 12 Oct 1997 03:40:26 +0000 (03:40 +0000)
the later a weak alias.

sysdeps/alpha/setjmp.S

index 48fe33b3ec39ad958060820c7dffa329258b16ca..ae3ceb517d41a87a26678a1a0e49ac7d01977cb3 100644 (file)
@@ -70,11 +70,11 @@ END(__sigsetjmp)
 /* Put these traditional entry points in the same file so that we can
    elide much of the nonsense in trying to jmp to the real function.  */
 
-ENTRY(_setjmp)
+ENTRY(__setjmp)
        ldgp    gp, 0(pv)
        mov     0, a1
        br      $sigsetjmp_local
-END(_setjmp)
+END(__setjmp)
 
 ENTRY(setjmp)
        ldgp    gp, 0(pv)
@@ -82,5 +82,5 @@ ENTRY(setjmp)
        br      $sigsetjmp_local
 END(setjmp)
 
-weak_extern(_setjmp)
+weak_alias(__setjmp, _setjmp)
 weak_extern(setjmp)