Skip to content

Commit

Permalink
[libc] Mark setjmp and longjmp as __cdecl
Browse files Browse the repository at this point in the history
  • Loading branch information
danielverkamp authored and Michael Brown committed Aug 28, 2008
1 parent fc0c40a commit 179fa70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arch/i386/include/setjmp.h
Expand Up @@ -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 */

0 comments on commit 179fa70

Please sign in to comment.