iPXE
setjmp.h
Go to the documentation of this file.
1#ifndef _SETJMP_H
2#define _SETJMP_H
3
4FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
5
6#include <bits/setjmp.h>
7
8extern int __asmcall __attribute__ (( returns_twice ))
9setjmp ( jmp_buf env );
10
11extern void __asmcall __attribute__ (( noreturn ))
12longjmp ( jmp_buf env, int val );
13
14#endif /* _SETJMP_H */
#define __asmcall
Declare a function with standard calling conventions.
Definition compiler.h:15
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define __attribute__(x)
Definition compiler.h:10
void __asmcall int val
Definition setjmp.h:12
A jump buffer.
Definition setjmp.h:9