conclusion
This commit is contained in:
parent
0f97a589b8
commit
9bc8a11afe
1069 changed files with 48694 additions and 11 deletions
38
05/musl-0.6.0/include/setjmp.h
Normal file
38
05/musl-0.6.0/include/setjmp.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#ifndef _SETJMP_H
|
||||
#define _SETJMP_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <bits/setjmp.h>
|
||||
|
||||
|
||||
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
||||
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||
typedef unsigned long sigjmp_buf[(128+sizeof(jmp_buf))/sizeof(long)];
|
||||
#ifdef _GNU_SOURCE
|
||||
#define jmp_buf sigjmp_buf
|
||||
#endif
|
||||
int sigsetjmp (sigjmp_buf, int);
|
||||
void siglongjmp (sigjmp_buf, int);
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||
int _setjmp (jmp_buf);
|
||||
void _longjmp (jmp_buf, int);
|
||||
#endif
|
||||
|
||||
|
||||
int setjmp (jmp_buf);
|
||||
void longjmp (jmp_buf, int);
|
||||
|
||||
#define setjmp setjmp
|
||||
#define longjmp longjmp
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue