Makefile and main template

This commit is contained in:
2026-04-15 10:02:20 -05:00
parent 05c5a1fb72
commit 307493b3f1
4 changed files with 156 additions and 3 deletions

11
c_dev/main.c Normal file
View File

@@ -0,0 +1,11 @@
#define DEBUG
#include "../include/template.h"
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
(void) argc;
(void) argv;
return EXIT_SUCCESS;
}