2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-20 14:33:15 +00:00

[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

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 */