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

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

#ifdef MAIN
#define trnsfrm1_test main
#endif
static int negate_int(int a_)
{
  return -a_;
}
#endif
int trnsfrm1_test(int, char**)
{
  cout<<"Results of trnsfrm1_test:"<<endl;

#ifndef ACORN_CFRONT
int numbers[6] = { -5, -1, 0, 1, 6, 11 };
#else
static int numbers[6] = { -5, -1, 0, 1, 6, 11 };
#endif

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