//      HSort.Hpp  V.2.0 - 2/27/91
//
//	Turbo C++ V.1.0
//
//	Michael Kelly - Author
//

#if !defined(HSORT_HPP)
#define HSORT_HPP

#include "thing.hpp"

void heapsort( size_t num_things, Thing *array );

#endif
