Move personal shells to a custom directory

This commit is contained in:
2026-02-04 10:25:22 +01:00
parent 0495bf0dee
commit 150bdae46e
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
#pragma oss task node(0)
{
printf("Tasking\n");
}
#pragma oss taskwait
printf("Past the task\n");
return 0;
}