Update sorting/selection_sort_recursive.c

This commit is contained in:
David Leal 2021-02-24 13:16:47 -06:00 committed by GitHub
parent 60a07e6346
commit 50cb5835a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ void selectionSort(int *arr, const int size)
/**
* Test function
*/
void test()
static void test()
{
const int size = 10;
int *arr = (int *)calloc(size, sizeof(int));