diff options
Diffstat (limited to 'include/nonport.h')
-rw-r--r-- | include/nonport.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/nonport.h b/include/nonport.h new file mode 100644 index 0000000..2cc5146 --- /dev/null +++ b/include/nonport.h @@ -0,0 +1,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
|