* sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
authorBrendan Kehoe <brendan@zen.org>
Fri, 31 Mar 1995 01:47:52 +0000 (01:47 +0000)
committerBrendan Kehoe <brendan@zen.org>
Fri, 31 Mar 1995 01:47:52 +0000 (01:47 +0000)
Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>

* sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.

ChangeLog
sysdeps/mips/__longjmp.c

index 0cd5521..324dc1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>
+
+       * sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
+
 Thu Mar 30 01:38:00 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
 
        * elf/elf.h (STN_UNDEF): New macro (distinct from SHN_UNDEF, though
index 7ea3df2..c54d8a9 100644 (file)
@@ -27,7 +27,7 @@ Cambridge, MA 02139, USA.  */
 #endif
 
 void
-DEFUN(__longjmp, (env, val_arg), CONST __jmp_buf env AND int val_arg)
+DEFUN(__longjmp, (env, val_arg), __jmp_buf env AND int val_arg)
 {
   /* gcc 1.39.19 miscompiled the longjmp routine (as it did setjmp before
      the hack around it); force it to use $a1 for the longjmp value.