// swap.h  Some swapping functions
// P.Conrad CISC181 04/05 

// We want to make the .h file "idempotent"

#ifndef SWAP_H
#define SWAP_H


void swap (int &a, int &b);
void swap (double &a, double &b);

#endif // SWAP_H
