Make EFI port primary
This commit is contained in:
9
core/compat/setjmp.h
Normal file
9
core/compat/setjmp.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef COMPAT_SETJMP_H
|
||||
#define COMPAT_SETJMP_H
|
||||
|
||||
typedef void *jmp_buf[5];
|
||||
|
||||
#define setjmp(env) __builtin_setjmp(env)
|
||||
#define longjmp(env, val) __builtin_longjmp(env, val)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user