mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
17 lines
303 B
C
17 lines
303 B
C
#ifndef RVL_SDK_PUBLIC_MEM_H
|
|
#define RVL_SDK_PUBLIC_MEM_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "rvl/MEM/mem_allocator.h"
|
|
#include "rvl/MEM/mem_expHeap.h"
|
|
#include "rvl/MEM/mem_frameHeap.h"
|
|
#include "rvl/MEM/mem_heapCommon.h"
|
|
#include "rvl/MEM/mem_list.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|