Mercurial > hg > octave-lyh
diff liboctave/atanh.c @ 1255:fa24599e3d2c
[project @ 1995-04-11 17:49:27 by jwe]
author | jwe |
---|---|
date | Tue, 11 Apr 1995 17:49:27 +0000 |
parents | 668dc3c012b5 |
children | 611d403c7f3d |
line wrap: on
line diff
--- a/liboctave/atanh.c +++ b/liboctave/atanh.c @@ -28,12 +28,12 @@ #include "f77-uscore.h" -extern double F77_FCN (datanh) (const double&); +extern double F77_FCN (datanh, DATANH) (const double&); double atanh (double x) { - return F77_FCN (datanh) (x); + return F77_FCN (datanh, DATANH) (x); } #endif