mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-10 09:29:53 +08:00
10 lines
104 B
C
10 lines
104 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
d_sinh (doublereal * x)
|
|
{
|
|
return (sinh (*x));
|
|
}
|