mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
14 lines
189 B
C
14 lines
189 B
C
#ifndef RUNTIME_GCN_MEM_ALLOC_H
|
|
#define RUNTIME_GCN_MEM_ALLOC_H
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __sys_free(void* block);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|