diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-18 14:36:18 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-18 14:36:18 -0800 |
commit | 0abbc7ef7cb5b70cb1bd35b72f6b3593660f5e69 (patch) | |
tree | 629d9462bbb35a03e3ebf8133868c5df8f4275c3 | |
parent | 4f176ff75c0fc55af8d7ee273d5757e08c2eb105 (diff) |
more library stubs
-rw-r--r-- | src/library.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 4e31e6f5..f55b7893 100644 --- a/src/library.js +++ b/src/library.js @@ -4303,6 +4303,11 @@ LibraryManager.library = { }, wcslen: function() { throw 'wcslen not implemented' }, + mbrlen: function() { throw 'mbrlen not implemented' }, + mbsrtowcs: function() { throw 'mbsrtowcs not implemented' }, + wcsnrtombs: function() { throw 'wcsnrtombs not implemented' }, + mbsnrtowcs: function() { throw 'mbsnrtowcs not implemented' }, + mbrtowc: function() { throw 'mbrtowc not implemented' }, strspn: function(pstr, pset) { var str = pstr, set, strcurr, setcurr; @@ -5097,6 +5102,8 @@ LibraryManager.library = { _ZNSt9exceptionD2Ev: function(){}, // XXX a dependency of dlmalloc, but not actually needed if libcxx is not anyhow included + _ZNSt9type_infoD2Ev: function(){}, + // RTTI hacks for exception handling, defining type_infos for common types. // The values are dummies. We simply use the addresses of these statically // allocated variables as unique identifiers. @@ -6153,6 +6160,8 @@ LibraryManager.library = { return me.ret; }, + __locale_mb_cur_max: function() { throw '__locale_mb_cur_max not implemented' }, + // ========================================================================== // langinfo.h // ========================================================================== @@ -6333,6 +6342,10 @@ LibraryManager.library = { return me.ret; }, + _Z7catopenPKci: function() { throw 'catopen not implemented' }, + _Z7catgetsP8_nl_catdiiPKc: function() { throw 'catgets not implemented' }, + _Z8catcloseP8_nl_catd: function() { throw 'catclose not implemented' }, + // ========================================================================== // errno.h // ========================================================================== |