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 sinh (double x)
  4. {
  5.         return (exp(x) - exp(-x)) / 2;
  6. }