mach

A work-in-progress implementation of make(1)

git clone https://git.8pit.net/mach.git

1#include <stdio.h>
2
3extern int myfunc(int);
4
5int
6main(void) {
7	printf("result: %d\n", myfunc(2));
8	return 0;
9}