1#include <stdio.h>23extern int myfunc(int);45int6main(void) {7 printf("result: %d\n", myfunc(2));8 return 0;9}
A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
1#include <stdio.h>23extern int myfunc(int);45int6main(void) {7 printf("result: %d\n", myfunc(2));8 return 0;9}