A work-in-progress implementation of make(1)
git clone https://git.8pit.net/mach.git
https://git.8pit.net/mach.git
1extern int myfunc(int); 2 3int 4myfunc(int a) { 5 return a; 6}
1extern int myfunc(int);
2
3int
4myfunc(int a) {
5 return a;
6}