diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 21:16:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 21:16:07 -0800 |
commit | c9bdd33a113b4236c60b61abaec4e5e8a8b89028 (patch) | |
tree | 6ccf40ed4f4adb577faa4708e370fca03a528faf /src | |
parent | 4caba7e02ab1e3dcae31114fd119544c7e106e70 (diff) |
don't print anything in exit(); fixes #1791
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index b25e48ed..48acf6ac 100644 --- a/src/library.js +++ b/src/library.js @@ -1190,7 +1190,6 @@ LibraryManager.library = { _exit: function(status) { // void _exit(int status); // http://pubs.opengroup.org/onlinepubs/000095399/functions/exit.html - Module.print('exit(' + status + ') called'); Module['exit'](status); }, fork__deps: ['__setErrNo', '$ERRNO_CODES'], |