add framework for subprocess

This commit is contained in:
ValKmjolnir
2024-06-09 00:21:11 +08:00
parent a4896a8732
commit b96f93872d
7 changed files with 46 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "natives/subprocess.h"
namespace nasal {
var builtin_subprocess_run(context* ctx, gc* ngc) {
return nil;
}
nasal_builtin_table subprocess_native[] = {
{"__subprocess_run", builtin_subprocess_run},
{nullptr, nullptr}
};
}