diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/ansi/include/setjmp.h | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/ansi/include/setjmp.h')
-rw-r--r-- | lib/mlibc/options/ansi/include/setjmp.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/mlibc/options/ansi/include/setjmp.h b/lib/mlibc/options/ansi/include/setjmp.h deleted file mode 100644 index 30346f0..0000000 --- a/lib/mlibc/options/ansi/include/setjmp.h +++ /dev/null @@ -1,48 +0,0 @@ - -#ifndef _SETJMP_H -#define _SETJMP_H - -#include <mlibc-config.h> -#include <bits/machine.h> -#include <abi-bits/signal.h> - -#ifdef __cplusplus -extern "C" { -#endif - -// [C11/7.13] Non-local jumps - -typedef struct __jmp_buf { - struct __mlibc_jmpbuf_register_state reg_state; -} jmp_buf[1]; - -#ifndef __MLIBC_ABI_ONLY - -__attribute__((__returns_twice__)) int setjmp(jmp_buf buffer); -__attribute__((__noreturn__)) void longjmp(jmp_buf buffer, int value); - -#endif /* !__MLIBC_ABI_ONLY */ - -// POSIX Non-local jumps signal extensions - -typedef struct __sigjmp_buf { - struct __mlibc_jmpbuf_register_state reg_state; - int savesigs; - sigset_t sigset; -} sigjmp_buf[1]; - -#ifndef __MLIBC_ABI_ONLY - -#if __MLIBC_POSIX_OPTION -__attribute__((__returns_twice__)) int sigsetjmp(sigjmp_buf buffer, int savesigs); -__attribute__((__noreturn__)) void siglongjmp(sigjmp_buf buffer, int value); -#endif // __MLIBC_POSIX_OPTION - -#endif /* !__MLIBC_ABI_ONLY */ - -#ifdef __cplusplus -} -#endif - -#endif // _SETJMP_H - |