123456789101112131415161718192021222324252627282930 |
- #include <setjmp.h>
- #include <stdlib.h>
- #include "pthreadP.h"
- extern __typeof(longjmp) __libc_longjmp attribute_noreturn;
- void
- longjmp (jmp_buf env, int val)
- {
- __libc_longjmp (env, val);
- }
- weak_alias (longjmp, siglongjmp)
|