Beispiel #1
0
void* enet_malloc(size_t size)
{
	void* memory = callbacks.malloc(size);

	if (memory == NULL)
		callbacks.no_memory();

	return memory;
}