This commit is contained in:
2025-09-23 13:44:14 +03:00
commit a84b8fcfde
91 changed files with 88177 additions and 0 deletions

11
FIRMWARE/errno.c Normal file
View File

@@ -0,0 +1,11 @@
// Sometimes __errno is not linked, here is a dummy replacement.
// Note that __errno is a function that returns a pointer to the
// actual __errno (this is for multithreading). Made me bang my
// head to the wall (and made tinyraytracer crash because powf()
// was *calling* __errno).
int* __errno() {
static int val = 0;
return &val;
}