freebsd-dev/contrib/libf2c/libF77/pow_dd.c

10 lines
127 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
#undef abs
#include <math.h>
2003-07-11 03:42:19 +00:00
double
pow_dd (doublereal * ap, doublereal * bp)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
return (pow (*ap, *bp));
1999-09-18 10:51:31 +00:00
}