cOMS/system/Allocator.h

18 lines
319 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef TOS_SYSTEM_ALLOCATOR_H
#define TOS_SYSTEM_ALLOCATOR_H
#if _WIN32
#include "../platform/win32/Allocator.h"
#elif __linux__
#include "../platform/linux/Allocator.h"
#endif
#endif