8 lines
		
	
	
	
		
			83 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			83 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "f2c.h"
 | 
						|
 | 
						|
double r_tanh(x)
 | 
						|
real *x;
 | 
						|
{
 | 
						|
double tanh();
 | 
						|
return( tanh(*x) );
 | 
						|
}
 |