From 47a1bdea8872c79dd2cd7d75ca7f254b9ed13170 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 29 Oct 2020 14:27:37 -0400 Subject: match up to func_801DCFE4, add string.h and stdlib.h, add types.h to Makefile include path, and move GameSpy under DWC --- include/MSL_C/MSL_Common/qsort.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/MSL_C/MSL_Common/qsort.h (limited to 'include/MSL_C/MSL_Common') diff --git a/include/MSL_C/MSL_Common/qsort.h b/include/MSL_C/MSL_Common/qsort.h new file mode 100644 index 0000000..c13ae0e --- /dev/null +++ b/include/MSL_C/MSL_Common/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 -- cgit v1.2.3