Mirai's Miscellaneous Misadventures

M17 / main / allocate.c

1// copyright 2022 zamfofex
2// license: AGPLv3 or later
3
4void *mimimi_allocate(unsigned int size)
5{
6	return malloc(size);
7}