From: Roland McGrath Date: Fri, 10 Feb 1995 00:10:54 +0000 (+0000) Subject: Remove `const' from function prototype. X-Git-Tag: glibc-2.16-ports-before-merge~3957 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b31933688909d5c22aa979a5fd74d3f4c859d2b;p=thirdparty%2Fglibc.git Remove `const' from function prototype. --- diff --git a/sysdeps/m68k/__longjmp.c b/sysdeps/m68k/__longjmp.c index debd0f1dc56..4fc61084a06 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. */