diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 21:34:39 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-23 21:34:39 +0000 |
commit | db25758fbd8534410e990bc32aabd24d7788075c (patch) | |
tree | 499971daa5826cd5721f4e576151a1ac25447c15 /libc/sysdeps/linux/common | |
parent | 9b92b36b830fcab65e8cb700ef26620d47d3879c (diff) |
longjmp missed, remove sh version, it's the same as the generic one
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/longjmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/longjmp.c b/libc/sysdeps/linux/common/longjmp.c index 8dc6a6cab..8c3679374 100644 --- a/libc/sysdeps/linux/common/longjmp.c +++ b/libc/sysdeps/linux/common/longjmp.c @@ -44,7 +44,7 @@ void __libc_longjmp (sigjmp_buf env, int val) __longjmp (env[0].__jmpbuf, val ?: 1); } -strong_alias(__libc_longjmp,longjmp) -strong_alias(__libc_longjmp,siglongjmp) +weak_alias(__libc_longjmp,longjmp) +weak_alias(__libc_longjmp,siglongjmp) strong_alias(__libc_longjmp,__libc_siglongjmp) strong_alias(__libc_longjmp,_longjmp) |