Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <math.h>
  2.  
  3. double cosh (double x)
  4. {
  5.         return (exp(x) + exp(-x)) / 2;
  6. }