| 123456789101112131415 | #include "MathFunctions.h"// TODO 11: include cmath// TODO 10: Wrap the mysqrt include in a precompiled ifdef based on USE_MYMATH#include "mysqrt.h"namespace mathfunctions {double sqrt(double x){  // TODO 9: If USE_MYMATH is defined, use detail::mysqrt.  // Otherwise, use std::sqrt.  return detail::mysqrt(x);}}
 |