changeset 1342:61bb2bdee11e

[project @ 1995-09-04 00:19:22 by jwe]
author jwe
date Mon, 04 Sep 1995 00:24:09 +0000
parents e4e4131b1648
children 94bedeb289e5
files src/expm.cc src/input.h src/minmax.cc src/pt-exp-base.h src/qzval.cc src/rand.cc src/unwind-prot.h
diffstat 7 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/expm.cc	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/expm.cc	Mon Sep 04 00:24:09 1995 +0000
@@ -27,7 +27,7 @@
 #include <config.h>
 #endif
 
-#include <math.h>
+#include <cmath>
 
 #include "dMatrix.h"
 #include "CMatrix.h"
--- a/src/input.h	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/input.h	Mon Sep 04 00:24:09 1995 +0000
@@ -26,7 +26,7 @@
 #if !defined (octave_input_h)
 #define octave_input_h 1
 
-#include <stdio.h>
+#include <cstdio>
 
 extern int octave_read (char *buf, int max_size);
 extern FILE *get_input_from_file (char *name, int warn = 1);
--- a/src/minmax.cc	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/minmax.cc	Mon Sep 04 00:24:09 1995 +0000
@@ -25,7 +25,7 @@
 #include <config.h>
 #endif
 
-#include <math.h>
+#include <cmath>
 
 #include "tree-const.h"
 #include "error.h"
--- a/src/pt-exp-base.h	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/pt-exp-base.h	Mon Sep 04 00:24:09 1995 +0000
@@ -28,8 +28,9 @@
 #pragma interface
 #endif
 
-#include <time.h>
-#include <stdio.h>
+#include <ctime>
+#include <cstdio>
+
 #include <iostream.h>
 
 #include "SLList.h"
--- a/src/qzval.cc	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/qzval.cc	Mon Sep 04 00:24:09 1995 +0000
@@ -27,7 +27,7 @@
 #include <config.h>
 #endif
 
-#include <float.h>
+#include <cfloat>
 
 #include "dMatrix.h"
 #include "dColVector.h"
--- a/src/rand.cc	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/rand.cc	Mon Sep 04 00:24:09 1995 +0000
@@ -25,7 +25,7 @@
 #include <config.h>
 #endif
 
-#include <time.h>
+#include <ctime>
 
 #include "tree-const.h"
 #include "f77-uscore.h"
--- a/src/unwind-prot.h	Mon Sep 04 00:16:21 1995 +0000
+++ b/src/unwind-prot.h	Mon Sep 04 00:24:09 1995 +0000
@@ -28,7 +28,7 @@
 #pragma interface
 #endif
 
-#include <stddef.h>
+#include <cstddef>
 
 typedef void (*cleanup_func)(void *ptr);