blob: 2cc51468f952bc90cb9f03b6dae90309cbd1555c (
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 gsifree(void *ptr);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_NONPORT_H
|