Files
mop3/init/init.c
kamkow1 fff51321bc
All checks were successful
Build documentation / build-and-deploy (push) Successful in 40s
Redesign syscalls
2026-01-20 20:46:34 +01:00

26 lines
410 B
C

#include <alloc/liballoc.h>
#include <limits.h>
#include <m/status.h>
#include <m/system.h>
#include <stddef.h>
#include <stdint.h>
#include <string/string.h>
#define EXAMPLE 1
#if EXAMPLE == 1
void app_main (void) {
test ('a');
test ('a');
test ('a');
int* xs = malloc (1024 * sizeof (*xs));
memset (xs, 123, 1024 * sizeof (*xs));
free (xs);
test ('a');
test ('a');
test ('a');
}
#endif