//min.hh #ifndef MIN_HH #define MIN_HH namespace mylib { double min( double a, double b ); int min( int a[], int size); } #endif