#ifndef MERGESORT_H
#define MERGESORT_H

void mergeSort (int *a, int n);

#endif
