We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff8790c commit d9bb2a2Copy full SHA for d9bb2a2
src/library.js
@@ -4706,15 +4706,17 @@ LibraryManager.library = {
4706
// setjmp.h
4707
// ==========================================================================
4708
4709
- _setjmp: function(env) {
+ setjmp: function(env) {
4710
// XXX print('WARNING: setjmp() not really implemented, will fail if longjmp() is actually called');
4711
return 0;
4712
},
4713
+ _setjmp: 'setjmp',
4714
- _longjmp: function(env, val) {
4715
+ longjmp: function(env, val) {
4716
// not really working...
4717
assert(0);
4718
4719
+ _longjmp: 'longjmp',
4720
4721
4722
// signal.h
0 commit comments