This commit is contained in:
2025-11-10 12:40:53 +05:00
parent d9daae8c5e
commit 3034e4d186
4 changed files with 9 additions and 8 deletions

View File

@@ -56,7 +56,7 @@ void Error_printAndExit(Error* e){
exit(111);
}
ErrorCodePage_define(TLIBC_ERROR);
ErrorCodePage_define(TLIBC);
ErrorCodePage_define(LIBC_ERRNO);
static u16 _error_code_page_last = 0;

View File

@@ -3,7 +3,7 @@
Result(void) tlibc_init(){
Deferral(8);
ErrorCodePage_register(TLIBC_ERROR);
ErrorCodePage_register(TLIBC);
ErrorCodePage_register(LIBC_ERRNO);
Return RESULT_VOID;