Como declarar um ponteiro de função externo "C"

Então eu tenho esse código:

#include "boost_bind.h"
#include <math.h>
#include <vector>
#include <algorithm>

double foo(double num, double (*func)(double)) {
  return 65.4;
}

int main(int argc, char** argv) {
  std::vector<double> vec;
  vec.push_back(5.0);
  vec.push_back(6.0);
  std::transform(vec.begin(), vec.end(), vec.begin(), boost::bind(foo, _1, log));
}

E receba este erro:

        return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
.............................................................^
%CXX-E-INCOMPATIBLEPRM, argument of type "double (* __ptr64 )(double) C" is
          incompatible with parameter of type "double (* __ptr64 )(double)"
          detected during:
            instantiation of ...5 pages of boost

Então esse erro é porque 'log' é extern "C" 'd em math.h

Eu queria saber como declarar o meu argumento ponteiro de função em foo () para que ele lida com funções externas "C" 'd.

questionAnswers(2)

yourAnswerToTheQuestion