Pristine Ack-5.5
[Ack-5.5.git] / lang / fortran / lib / libF77 / r_tanh.c
1 #include "f2c.h"
2
3 double r_tanh(x)
4 real *x;
5 {
6 double tanh();
7 return( tanh(*x) );
8 }