20 lines
303 B
C
20 lines
303 B
C
#include "axl.h"
|
|
#include <windows.h>
|
|
|
|
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;
|
|
}
|