Workaround for errno

This commit is contained in:
Alex
2023-05-04 04:59:19 +03:00
parent 7c51807812
commit 4953000370
2 changed files with 5 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
#include <errno.h>
int __local_stub_errno = 0;
int *__errno_location(void)
{
return 0;
}
return &__local_stub_errno;
}