
#ifndef __MERGE_SORT__
#define __MERGE_SORT__

void merge_sort(double*, int, int);

#endif

