#ifndef POWER2_H
#define POWER2_H

// Prototype for function power2()
// returns a value to the power of 2
double power2(double);

#endif
