Skip to content

Commit

Permalink
Fix jmp_buf size to support arm-hf on nuttx
Browse files Browse the repository at this point in the history
Related issue : jerryscript-project#231

JerryScript-DCO-1.0-Signed-off-by: SaeHie Park [email protected]
  • Loading branch information
seanshpark committed Jul 2, 2015
1 parent 1b55630 commit 63ecc68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jerry-libc/include/setjmp.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* See also:
* setjmp, longjmp
*/
typedef uint64_t jmp_buf[12];
typedef uint64_t jmp_buf[14];

extern EXTERN_C int setjmp (jmp_buf env);
extern EXTERN_C void longjmp (jmp_buf env, int val);
Expand Down

0 comments on commit 63ecc68

Please sign in to comment.