libc: core: implement assert, ctype, wctype, and stdlib functions
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
extern void __libc_assert_failed(
|
||||
const char *file,
|
||||
int line,
|
||||
const char *func,
|
||||
const char *cond)
|
||||
{
|
||||
abort();
|
||||
}
|
||||
Reference in New Issue
Block a user