diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-25 11:52:47 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-26 06:46:53 +0700 |
commit | 894d13a4db38885fc282f1f129b481870dfb1902 (patch) | |
tree | ec173104d42bab054756b2a0da4f8cd8c9a7af95 /src | |
parent | 2fd1d58f178256e16f329af4d40ba140b515b6ce (diff) |
Add wprintf, swprintf, vswprintf, vfwprintf, etc.
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index f313bf97..a0115373 100644 --- a/src/library.js +++ b/src/library.js @@ -8897,7 +8897,7 @@ function autoAddDeps(object, name) { } // Add aborting stubs for various libc stuff needed by libc++ -['pthread_cond_signal', 'pthread_equal', 'wcstol', 'wcstoll', 'wcstoul', 'wcstoull', 'wcstof', 'wcstod', 'wcstold', 'swprintf', 'pthread_join', 'pthread_detach', 'catgets', 'catopen', 'catclose'].forEach(function(aborter) { +['pthread_cond_signal', 'pthread_equal', 'wcstol', 'wcstoll', 'wcstoul', 'wcstoull', 'wcstof', 'wcstod', 'wcstold', 'pthread_join', 'pthread_detach', 'catgets', 'catopen', 'catclose'].forEach(function(aborter) { LibraryManager.library[aborter] = function() { throw 'TODO: ' + aborter }; }); |