You've already forked mp1r-practice-mod
mirror of
https://github.com/CraftyBoss/mp1r-practice-mod.git
synced 2026-04-01 08:50:23 -07:00
15 lines
275 B
C++
15 lines
275 B
C++
#pragma once
|
|
|
|
/* Require an externally linked heap implementation to be provided if fake heap isn't used. */
|
|
#ifndef EXL_USE_FAKEHEAP
|
|
|
|
#include <cstddef>
|
|
|
|
extern "C" {
|
|
|
|
extern void *malloc(size_t size);
|
|
extern void *aligned_alloc( size_t alignment, size_t size );
|
|
|
|
};
|
|
|
|
#endif |