/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/setjmp.h
14 строк
293 B
Michael Brown
[libc] Centralise architecture-independent portions of setjmp.h
12 сен 2024, 17:01
12 сен 2024, 17:01
5de5d46
Код
Авторство
О чём код?
#ifndef _SETJMP_H #define _SETJMP_H FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <bits/setjmp.h> extern int __asmcall __attribute__ (( returns_twice )) setjmp ( jmp_buf env ); extern void __asmcall __attribute__ (( noreturn )) longjmp ( jmp_buf env, int val ); #endif /* _SETJMP_H */