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 /sysdeps | |
parent | 67188fe6b0b93cdee866c079e6e4a6eec1779535 (diff) | |
download | glibc-0a64805148b2669a86323f30ef6c75625c077754.tar.gz glibc-0a64805148b2669a86323f30ef6c75625c077754.tar.xz glibc-0a64805148b2669a86323f30ef6c75625c077754.zip |
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
* sysdeps/alpha/__longjmp.c (__longjmp): Take out const.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/alpha/__longjmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |