summaryrefslogtreecommitdiff
path: root/include/MSL_C/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/MSL_C/stdlib.h')
-rw-r--r--include/MSL_C/stdlib.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/MSL_C/stdlib.h b/include/MSL_C/stdlib.h
new file mode 100644
index 0000000..bf86bca
--- /dev/null
+++ b/include/MSL_C/stdlib.h
@@ -0,0 +1,15 @@
+#ifndef POKEREVO_STDLIB_H
+#define POKEREVO_STDLIB_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void qsort(void *base, u32 nmemb, u32 size,
+ s32 (*compar)(const void *, const void *));
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_STDLIB_H