All checks were successful
Build documentation / build-and-deploy (push) Successful in 40s
26 lines
410 B
C
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
|