Remove `const' from function prototype.

This commit is contained in:
Roland McGrath 1995-02-10 00:10:54 +00:00
parent 1eae31ac32
commit 6b31933688
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Cambridge, MA 02139, USA. */
/* 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)
{
/* This restores the FP and SP that setjmp's caller had,
and puts the return address into A0 and VAL into D0. */