changeset 1243:668dc3c012b5

[project @ 1995-04-11 00:30:31 by jwe]
author jwe
date Tue, 11 Apr 1995 00:37:34 +0000
parents 5fb4ee02da70
children f0ad21c0b3a6
files liboctave/asinh.c liboctave/atanh.c liboctave/erf.c liboctave/erfc.c liboctave/gamma.c liboctave/getopt.c liboctave/getopt1.c liboctave/lgamma.c liboctave/tempnam.c liboctave/tempname.c liboctave/tmpnam.c src/strcasecmp.c src/strncase.c
diffstat 13 files changed, 25 insertions(+), 25 deletions(-) [+]
line wrap: on
line diff
--- 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 <config.h>
 #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
--- 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 <config.h>
 #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
--- 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 <config.h>
 #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
--- 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 <config.h>
 #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
--- 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 <config.h>
 #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
--- 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 <config.h>
 #endif
 
 #ifdef __GNUC__
--- 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 <config.h>
 #endif
 
 #include "getopt.h"
--- 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 <config.h>
 #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;
 
--- 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 <config.h>
 #endif
 
 #ifndef HAVE_TEMPNAM
--- 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 <config.h>
 #endif
 
 #ifndef HAVE_TEMPNAM
--- 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 <config.h>
 #endif
 
 #ifndef HAVE_TMPNAM
--- 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 <config.h>
 #endif
 
 #ifndef HAVE_STRCASECMP
--- 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 <config.h>
 #endif
 
 #ifndef HAVE_STRNCASECMP