userspace/libc_test: add test functions for various libc components

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-01-28 11:42:28 +02:00
parent cbe651d2da
commit 1b55332027
22 changed files with 144 additions and 1 deletions

View File

@ -16,3 +16,9 @@
*/
#include <assert.h>
int test_assert(void)
{
assert(1 == 1);
return 0;
}