libc: core: implement assert, ctype, wctype, and stdlib functions

This commit is contained in:
2026-04-01 18:48:35 +01:00
parent 36a486cca6
commit 40682810ab
22 changed files with 581 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdlib.h>
extern void __libc_assert_failed(
const char *file,
int line,
const char *func,
const char *cond)
{
abort();
}