From 6b31933688909d5c22aa979a5fd74d3f4c859d2b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 10 Feb 1995 00:10:54 +0000 Subject: [PATCH] Remove `const' from function prototype. --- sysdeps/m68k/__longjmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/m68k/__longjmp.c b/sysdeps/m68k/__longjmp.c index debd0f1dc5..4fc61084a0 100644 --- a/sysdeps/m68k/__longjmp.c +++ b/sysdeps/m68k/__longjmp.c @@ -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. */