game/main.c

23 lines
301 B
C
Raw Normal View History

2025-11-23 18:21:50 +03:00
#include "axl.h"
2025-11-23 20:57:09 +03:00
int _start(void)
2025-11-23 18:21:50 +03:00
{
axl_init();
void* fds = axl_malloc(83);
2025-11-23 20:57:09 +03:00
int* f = axl_malloc(sizeof(int));
2025-11-23 18:21:50 +03:00
*f = 4;
2025-11-27 20:42:39 +03:00
*(int*)(fds) = 4;
(void)axl_memcmp(f, fds, 4);
axl_free(fds);
axl_free(f);
2025-11-23 20:57:09 +03:00
(void)fds;
2025-11-23 18:21:50 +03:00
(void)f;
while(true){}
return 0;
}