diff options
author | Brendan Kehoe <brendan@zen.org> | 1995-03-31 03:52:13 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@zen.org> | 1995-03-31 03:52:13 +0000 |
commit | 0a64805148b2669a86323f30ef6c75625c077754 (patch) | |
tree | ce994d96569bc1883cac4fd3d85ef3cfd6e6b163 | |
parent | 67188fe6b0b93cdee866c079e6e4a6eec1779535 (diff) | |
download | glibc-0a64805148b2669a86323f30ef6c75625c077754.tar glibc-0a64805148b2669a86323f30ef6c75625c077754.tar.gz glibc-0a64805148b2669a86323f30ef6c75625c077754.tar.bz2 glibc-0a64805148b2669a86323f30ef6c75625c077754.zip |
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | sysdeps/alpha/__longjmp.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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> diff --git a/sysdeps/alpha/__longjmp.c b/sysdeps/alpha/__longjmp.c index ad0489894d..f3f35eec9c 100644 --- a/sysdeps/alpha/__longjmp.c +++ b/sysdeps/alpha/__longjmp.c @@ -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; |