diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-09-29 22:55:53 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-09-29 22:55:53 -0400 |
commit | 7c4be3103501672f96191329ae15d899eb1aae4a (patch) | |
tree | a80854618b148babb330a61ad280bfe8c0470745 /include/libstdc++/qsort.h | |
parent | 327f50ac00dd60c264dae63e96ced917d593c651 (diff) | |
parent | 89d7e06a792a5859b3d284257612820feb2980a2 (diff) |
Merge branch 'master' of https://github.com/doldecomp/pokerevo into label_ctors
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
|