blob: c1ed0e73afd7c6f2cd8df1d78927fd01765863f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef POKEREVO_NONPORT_H
#define POKEREVO_NONPORT_H
#ifdef __cplusplus
extern "C" {
#endif
void *gsimalloc(u32 sz);
void *gsirealloc(void *ptr, u32 sz);
void gsifree(void *ptr);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_NONPORT_H
|