#include "axl.h" #include int _start(void) // Entry point on Linux { MessageBoxA(NULL, "wawa", "fffff", MB_OK | MB_ICONINFORMATION); axl_init(); int* f = axl_malloc(sizeof(int)); *f = 4; axl_free(f); (void)f; Sleep(2); while(true){} return 0; }