Move to scons, add more infra

This commit is contained in:
2022-10-11 22:00:54 -04:00
parent 54f3ff5a67
commit 9cde08b910
5 changed files with 77 additions and 43 deletions

View File

@@ -1,6 +1,7 @@
#include <stdio.h>
int main(const char **argv, int argc) {
printf("Hello, world!\n");
int main(int argc, const char **argv) {
(void) argc, (void) argv;
return 0;
}