changeset 1341:e4e4131b1648

[project @ 1995-09-04 00:13:33 by jwe]
author jwe
date Mon, 04 Sep 1995 00:16:21 +0000
parents 02145fb69a5b
children 61bb2bdee11e
files src/arith-ops.cc src/dirfns.cc src/lex.l
diffstat 3 files changed, 12 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/arith-ops.cc	Thu Aug 31 22:09:37 1995 +0000
+++ b/src/arith-ops.cc	Mon Sep 04 00:16:21 1995 +0000
@@ -25,8 +25,9 @@
 #include <config.h>
 #endif
 
-#include <ctype.h>
-#include <math.h>
+#include <cctype>
+#include <cmath>
+
 #include <Complex.h>
 
 #include "error.h"
--- a/src/dirfns.cc	Thu Aug 31 22:09:37 1995 +0000
+++ b/src/dirfns.cc	Mon Sep 04 00:16:21 1995 +0000
@@ -38,15 +38,16 @@
 #include <config.h>
 #endif
 
+#include <cerrno>
+#include <cstdio>
+#include <cstddef>
+#include <cstdlib>
+#include <cstring>
+
 #include <sys/types.h>
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
-#include <errno.h>
-#include <stdio.h>
-#include <stddef.h>
-#include <stdlib.h>
-#include <string.h>
 #include <strstream.h>
 #include <sys/param.h>
 
--- a/src/lex.l	Thu Aug 31 22:09:37 1995 +0000
+++ b/src/lex.l	Mon Sep 04 00:16:21 1995 +0000
@@ -31,9 +31,10 @@
 #include <config.h>
 #endif
 
+#include <cctype>
+#include <cstring>
+
 #include <strstream.h>
-#include <ctype.h>
-#include <string.h>
 
 #include "input.h"
 #include "token.h"