game/main.c

23 lines
306 B
C

#define AXL_MIMIC_STDLIB
#include "axl.h"
int _start(void)
{
axl_init();
void* fds = malloc(83);
int* f = malloc(sizeof(int));
*f = 4;
*(int*)(fds) = 4;
(void)memcmp(f, fds, 4);
free(fds);
free(f);
(void)fds;
(void)f;
while(true){}
return 0;
}