Files
Linux.js---javascript-OS/chibraxLoader/chibraxLoader.c
T
2021-11-25 14:03:31 +01:00

10 lines
148 B
C

#include <unistd.h>
#define ERR 1
#define node "/bin/node"
#define chibrax "/chibrax/index.js"
int main() {
return execl(node, node, chibrax);
}