#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <algo.h>
#include <iostream.h>

#ifdef MAIN
#define partsrt0_test main
#endif
#endif
int partsrt0_test(int, char**)
{
  cout<<"Results of partsrt0_test:"<<endl;
#ifndef ACORN_CFRONT
int numbers[6] = { 5, 2, 4, 3, 1, 6 };
#else
static int numbers[6] = { 5, 2, 4, 3, 1, 6 };
#endif

  partial_sort(numbers, numbers + 3, numbers + 6);
  for(int i = 0; i < 6; i++)
    cout << numbers[i] << ' ';
  cout << endl;
  return 0;
}
