aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/d_sqrt.c
blob: 0a458823318c958bf31bf0d9bc474910877fb59b (plain)
1
2
3
4
5
6
7
8
9
#include "f2c.h"

#undef abs
#include <math.h>
double
d_sqrt (doublereal * x)
{
  return (sqrt (*x));
}