# HG changeset patch # User jwe # Date 797560654 0 # Node ID 668dc3c012b5920eba3a7ab7d6d38de6727a17c5 # Parent 5fb4ee02da7036e7d8f47cd079a26d072b419ede [project @ 1995-04-11 00:30:31 by jwe] diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/asinh.c --- a/liboctave/asinh.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/asinh.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,19 +21,19 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_ASINH #include "f77-uscore.h" -extern double F77_FCN (dasinh) (double*); +extern double F77_FCN (dasinh) (const double&); double asinh (double x) { - return F77_FCN (dasinh) (&x); + return F77_FCN (dasinh) (x); } #endif diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/atanh.c --- a/liboctave/atanh.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/atanh.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,19 +21,19 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_ATANH #include "f77-uscore.h" -extern double F77_FCN (datanh) (double*); +extern double F77_FCN (datanh) (const double&); double atanh (double x) { - return F77_FCN (datanh) (&x); + return F77_FCN (datanh) (x); } #endif diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/erf.c --- a/liboctave/erf.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/erf.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,19 +21,19 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_ERF #include "f77-uscore.h" -extern double F77_FCN (derf) (double*); +extern double F77_FCN (derf) (const double&); double erf (double x) { - return F77_FCN (derf) (&x); + return F77_FCN (derf) (x); } #endif diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/erfc.c --- a/liboctave/erfc.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/erfc.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,19 +21,19 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_ERFC #include "f77-uscore.h" -extern double F77_FCN (derfc) (double*); +extern double F77_FCN (derfc) (const double&); double erfc (double x) { - return F77_FCN (derfc) (&x); + return F77_FCN (derfc) (x); } #endif diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/gamma.c --- a/liboctave/gamma.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/gamma.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,19 +21,19 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_GAMMA #include "f77-uscore.h" -extern double F77_FCN (dgamma) (double*); +extern double F77_FCN (dgamma) (const double&); double gamma (double x) { - return F77_FCN (dgamma) (&x); + return F77_FCN (dgamma) (x); } #endif diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/getopt.c --- a/liboctave/getopt.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/getopt.c Tue Apr 11 00:37:34 1995 +0000 @@ -27,7 +27,7 @@ #endif #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifdef __GNUC__ diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/getopt1.c --- a/liboctave/getopt1.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/getopt1.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #include "getopt.h" diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/lgamma.c --- a/liboctave/lgamma.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/lgamma.c Tue Apr 11 00:37:34 1995 +0000 @@ -21,7 +21,7 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_LGAMMA @@ -33,7 +33,7 @@ int signgam; -extern int F77_FCN (dlgams) (double*, double*, double*); +extern int F77_FCN (dlgams) (const double&, double&, double&); double lgamma (double x) @@ -41,7 +41,7 @@ double result; double sgngam; - F77_FCN (dlgams) (&x, &result, &sgngam); + F77_FCN (dlgams) (x, result, sgngam); signgam = (int) sgngam; diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/tempnam.c --- a/liboctave/tempnam.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/tempnam.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_TEMPNAM diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/tempname.c --- a/liboctave/tempname.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/tempname.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_TEMPNAM diff -r 5fb4ee02da70 -r 668dc3c012b5 liboctave/tmpnam.c --- a/liboctave/tmpnam.c Mon Apr 10 23:08:10 1995 +0000 +++ b/liboctave/tmpnam.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_TMPNAM diff -r 5fb4ee02da70 -r 668dc3c012b5 src/strcasecmp.c --- a/src/strcasecmp.c Mon Apr 10 23:08:10 1995 +0000 +++ b/src/strcasecmp.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_STRCASECMP diff -r 5fb4ee02da70 -r 668dc3c012b5 src/strncase.c --- a/src/strncase.c Mon Apr 10 23:08:10 1995 +0000 +++ b/src/strncase.c Tue Apr 11 00:37:34 1995 +0000 @@ -17,7 +17,7 @@ Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include #endif #ifndef HAVE_STRNCASECMP