Skip to content

Commit 49f1c8c

Browse files
committed
Add mergesort to the includes in array merge
This will make `mergesort()` available in their array merge code.
1 parent 7feae7e commit 49f1c8c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

array_merge/array_merge.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "array_merge.h"
2+
#include "../mergesort/mergesort.h"
23

34
int* array_merge(int num_arrays, int* sizes, int** values) {
45
// This is obviously broken. It has the right type, though, eh?

0 commit comments

Comments
 (0)