// math.cc

#include <math.h>
#include "math.hh"

double
math_space::pow (double a, double b)
{
  return ::pow (a, b);
}

double
math_space::log (double a, double b)
{
  return ::log (b) / ::log (a);
}

