diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-09-29 12:50:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 12:50:12 -0400 |
commit | bb28572125c45ec20f5fbf85120cd71fb2486bac (patch) | |
tree | 7847f3008d5208a45460af5805087f21b7613a4f /include/libstdc++/qsort.h | |
parent | 1cc68edd6a6967c661579858ec0c1cf1d6d644d5 (diff) | |
parent | c285b7af502dfe463479cecfbb26313be3e5f5f4 (diff) |
Merge pull request #106 from mparisi20/master
Finish splitting nw4r::lyt and split more standard library modules
Diffstat (limited to 'include/libstdc++/qsort.h')
-rw-r--r-- | include/libstdc++/qsort.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/libstdc++/qsort.h b/include/libstdc++/qsort.h new file mode 100644 index 0000000..c13ae0e --- /dev/null +++ b/include/libstdc++/qsort.h @@ -0,0 +1,15 @@ +#ifndef POKEREVO_QSORT_H
+#define POKEREVO_QSORT_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_QSORT_H
|