add finishing touches for v4.0.3-rc

This commit is contained in:
2024-12-28 13:04:11 -05:00
parent d10dcd190b
commit e69b9c1197
6 changed files with 119 additions and 116 deletions

View File

@@ -1,27 +0,0 @@
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
int
run_make_task(char task[])
{
char *build_args[] = {
"/bin/make",
task,
NULL
};
execvp(
"/bin/make",
build_args
);
if (errno != 0 ) {
return errno;
}
}
int
main()
{
run_make_task("help");
}