* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
authorBrendan Kehoe <brendan@zen.org>
Fri, 31 Mar 1995 03:52:13 +0000 (03:52 +0000)
committerBrendan Kehoe <brendan@zen.org>
Fri, 31 Mar 1995 03:52:13 +0000 (03:52 +0000)
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.

ChangeLog
sysdeps/alpha/__longjmp.c

index 324dc1b..3d23dc9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>
 
        * sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
+       * sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
 
 Thu Mar 30 01:38:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
index ad04898..f3f35ee 100644 (file)
@@ -36,7 +36,7 @@ register double
 /* Jump to the position specified by ENV, causing the
    setjmp call there to return VAL, or 1 if VAL is 0.  */
 void
-__longjmp (const __jmp_buf env, int val)
+__longjmp (__jmp_buf env, int val)
 {
   /* Restore the integer registers.  */
   r9 = env[0].__9;