Add missing files

This commit is contained in:
2024-11-03 11:41:22 +01:00
parent 6587c8498f
commit 137ec0fd74
6 changed files with 96 additions and 0 deletions

11
tasks/tasks.c Normal file
View File

@@ -0,0 +1,11 @@
#include "library.h"
int task2(void) {
puts("Hello World from task 1\n");
return 0;
}
int task1(void) {
puts("Hello World from task 2\n");
return 0;
}