Skip to content

Commit

Permalink
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
Browse files Browse the repository at this point in the history
	* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
  • Loading branch information
Brendan Kehoe committed Mar 31, 1995
1 parent 67188fe commit 0a64805
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Thu Mar 30 20:43:02 1995 Brendan Kehoe <brendan@zen.org>

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

Thu Mar 30 01:38:00 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>

Expand Down
2 changes: 1 addition & 1 deletion sysdeps/alpha/__longjmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ register double
/* 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)
{
/* Restore the integer registers. */
r9 = env[0].__9;
Expand Down

0 comments on commit 0a64805

Please sign in to comment.