1
0
mirror of https://git.musl-libc.org/git/musl synced 2025-03-26 04:23:25 +03:00

39 lines
660 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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)];
2011-02-12 00:22:29 -05:00
#ifdef _GNU_SOURCE
#define jmp_buf sigjmp_buf
#endif
int sigsetjmp (sigjmp_buf, int);
void siglongjmp (sigjmp_buf, int);
#endif
2011-02-12 00:22:29 -05:00
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
2011-02-12 00:22:29 -05:00
int _setjmp (jmp_buf);
void _longjmp (jmp_buf, int);
#endif
2011-02-12 00:22:29 -05:00
int setjmp (jmp_buf);
2011-02-12 00:22:29 -05:00
void longjmp (jmp_buf, int);
#define setjmp setjmp
#define longjmp longjmp
#ifdef __cplusplus
}
#endif
#endif