// Sort.C
// Name:  Gary T. Leavens
// TA:    Bjarne Stroustrup
// Section:  A1

#include <iostream.h>
#include "swap.h"

void Sort( int vec[], int size )
{
  // ****** STUB ********

  cout << "*** Sort routine entered ***\n";
  swap(vec[0], vec[1]);
}
