mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
setjmp: make setjmp a macro
This commit is contained in:
parent
4933d9c19f
commit
c88b31ec94
1 changed files with 3 additions and 0 deletions
|
@ -17,6 +17,9 @@ typedef struct __jmp_buf jmp_buf[1];
|
|||
*/
|
||||
extern int setjmp(jmp_buf env);
|
||||
|
||||
/* Standard requires setjmp to be a macro (7.13§1) */
|
||||
#define setjmp setjmp
|
||||
|
||||
/*
|
||||
** Store the calling environment in ENV, not saving the signal mask.
|
||||
** Return 0.
|
||||
|
|
Loading…
Reference in a new issue