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

This commit is contained in:
Brendan Kehoe 1995-03-31 03:52:13 +00:00
parent e34abb0bcb
commit 202cae361f

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;