mirror of git://sourceware.org/git/glibc.git
Remove `const' from function prototype.
This commit is contained in:
parent
1eae31ac32
commit
6b31933688
|
@ -22,7 +22,7 @@ Cambridge, MA 02139, USA. */
|
||||||
/* Jump to the position specified by ENV, causing the
|
/* Jump to the position specified by ENV, causing the
|
||||||
setjmp call there to return VAL, or 1 if VAL is 0. */
|
setjmp call there to return VAL, or 1 if VAL is 0. */
|
||||||
void
|
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,
|
/* This restores the FP and SP that setjmp's caller had,
|
||||||
and puts the return address into A0 and VAL into D0. */
|
and puts the return address into A0 and VAL into D0. */
|
||||||
|
|
Loading…
Reference in New Issue