10 lines
148 B
C
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);
|
|
}
|