* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.

* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
This commit is contained in:
Brendan Kehoe 1995-03-31 03:52:13 +00:00
parent 67188fe6b0
commit 0a64805148
2 changed files with 2 additions and 1 deletions

View File

@ -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>

View 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;