(__longjmp): Make arg const.

This commit is contained in:
Roland McGrath 1994-12-04 18:57:56 +00:00
parent 60074b22a2
commit b0a51e5395

View file

@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */
setjmp call there to return VAL, or 1 if VAL is 0. */
__NORETURN
void
__longjmp (__jmp_buf env, int val)
__longjmp (const __jmp_buf env, int val)
{
/* This restores the FP and SP that setjmp's caller had,
and puts the return address into A0 and VAL into D0. */