tanh.c 75 B

12345
  1. #include <math.h>
  2. double tanh(double x) {
  3. return sinh(x) / cosh(x);
  4. }