mirror of
https://github.com/ipxe/ipxe
synced 2025-12-14 16:01:38 +03:00
[libc] Mark setjmp and longjmp as __cdecl
This commit is contained in:
committed by
Michael Brown
parent
fc0c40a5b0
commit
179fa70d34
@@ -6,7 +6,7 @@
|
|||||||
#define JBLEN 6
|
#define JBLEN 6
|
||||||
typedef unsigned long jmp_buf[JBLEN];
|
typedef unsigned long jmp_buf[JBLEN];
|
||||||
|
|
||||||
extern int setjmp (jmp_buf env);
|
extern int __cdecl setjmp (jmp_buf env);
|
||||||
extern void longjmp (jmp_buf env, int val);
|
extern void __cdecl longjmp (jmp_buf env, int val);
|
||||||
|
|
||||||
#endif /* ETHERBOOT_SETJMP_H */
|
#endif /* ETHERBOOT_SETJMP_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user