david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[libc] Mark setjmp and longjmp as __cdecl

This commit is contained in:
Daniel Verkamp 2008-07-15 12:15:51 -04:00 committed by Michael Brown
parent fc0c40a5b0
commit 179fa70d34
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#define JBLEN 6
typedef unsigned long jmp_buf[JBLEN];
extern int setjmp (jmp_buf env);
extern void longjmp (jmp_buf env, int val);
extern int __cdecl setjmp (jmp_buf env);
extern void __cdecl longjmp (jmp_buf env, int val);
#endif /* ETHERBOOT_SETJMP_H */