mirror of
https://github.com/reactos/reactos.git
synced 2025-06-17 04:08:40 +00:00
12 lines
207 B
C
12 lines
207 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <math.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double cosh(double x)
|
|
{
|
|
const double ebig = exp(fabs(x));
|
|
return (ebig + 1.0/ebig) / 2.0;
|
|
}
|