c-defs.js 223 B

12345678
  1. // The real functions are defined in cephes.js, this is just so
  2. // emscripten doesn't complain.
  3. mergeInto(LibraryManager.library, {
  4. mtherr: function(name /* char* */, code /* int */) {
  5. throw new Error(name);
  6. }
  7. });