#include "common.h" void swap( int i, int j ) { int tmp; tmp = gasort[i]; gasort[i] = gasort[j]; gasort[j] = tmp; }