Move TLSF to stdlib, see #15

This commit is contained in:
dcodeIO
2018-02-12 19:17:50 +01:00
parent 9e9284955d
commit c6486c461d
16 changed files with 4716 additions and 544 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node
const asc = module.exports = require("./asc.js");
if (process.argv[1] === __filename)
if (/\basc$/.test(process.argv[1]))
process.exitCode = asc.main(process.argv.slice(2));