Remove `const' from function prototype.
authorRoland McGrath <roland@gnu.org>
Fri, 10 Feb 1995 00:10:54 +0000 (00:10 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 10 Feb 1995 00:10:54 +0000 (00:10 +0000)
sysdeps/m68k/__longjmp.c

index debd0f1..4fc6108 100644 (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. */