]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - contrib/libf2c/libF77/d_sqrt.c
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.git] / contrib / libf2c / libF77 / d_sqrt.c
1 #include "f2c.h"
2
3 #undef abs
4 #include <math.h>
5 double
6 d_sqrt (doublereal * x)
7 {
8   return (sqrt (*x));
9 }