| 5027 | } |
| 5028 | |
| 5029 | JSModuleDef *js_init_module_bjson(JSContext *ctx, const char *module_name) |
| 5030 | { |
| 5031 | JSModuleDef *m; |
| 5032 | m = JS_NewCModule(ctx, module_name, js_bjson_init); |
| 5033 | if (!m) |
| 5034 | return NULL; |
| 5035 | JS_AddModuleExportList(ctx, m, js_bjson_funcs, countof(js_bjson_funcs)); |
| 5036 | return m; |
| 5037 | } |
no outgoing calls