changeset 7048:845ca0affec0

[project @ 2007-10-22 16:55:41 by jwe]
author jwe
date Mon, 22 Oct 2007 16:55:41 +0000
parents d00f05fb8105
children e426f849fc36
files doc/ChangeLog doc/interpreter/munge-texi.cc liboctave/ChangeLog liboctave/chMatrix.cc liboctave/lo-utils.cc liboctave/oct-env.cc liboctave/oct-uname.cc liboctave/sparse-sort.cc src/ChangeLog src/unwind-prot.cc
diffstat 10 files changed, 23 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Mon Oct 22 14:09:54 2007 +0000
+++ b/doc/ChangeLog	Mon Oct 22 16:55:41 2007 +0000
@@ -1,3 +1,7 @@
+2007-10-22  Kim Hansen  <kimhanse@gmail.com>
+
+	* interpreter/munge-texi.cc: Include <cstdlib> and <cstring>.
+
 2007-10-19  David Bateman  <dbateman@free.fr>
 
 	* refcard/refcard.tex: Update for 3.0.
--- a/doc/interpreter/munge-texi.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/doc/interpreter/munge-texi.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -30,6 +30,9 @@
 #include <string>
 #include <map>
 
+#include <cstdlib>
+#include <cstring>
+
 static const char doc_delim = '';
 
 static std::map<std::string, std::string> help_text;
--- a/liboctave/ChangeLog	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/ChangeLog	Mon Oct 22 16:55:41 2007 +0000
@@ -1,3 +1,8 @@
+2007-10-22  Kim Hansen  <kimhanse@gmail.com>
+
+	* chMatrix.cc, lo-utils.cc, oct-env.cc, oct-uname.cc,
+	sparse-sort.cc: Include <cstring>.
+
 2007-10-17  John W. Eaton  <jwe@octave.org>
 
 	* oct-sparse.h: Don't include metis.h.
--- a/liboctave/chMatrix.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/chMatrix.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -26,6 +26,8 @@
 #include <config.h>
 #endif
 
+#include <cstring>
+
 #include <iostream>
 #include <string>
 
--- a/liboctave/lo-utils.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/lo-utils.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -29,6 +29,7 @@
 #include <cctype>
 #include <cstdlib>
 #include <cstdio>
+#include <cstring>
 
 #include <limits>
 #include <string>
--- a/liboctave/oct-env.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/oct-env.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -43,6 +43,7 @@
 
 #include <cctype>
 #include <cstdlib>
+#include <cstring>
 
 #include <string>
 
--- a/liboctave/oct-uname.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/oct-uname.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -25,6 +25,7 @@
 #endif
 
 #include <cerrno>
+#include <cstring>
 
 #ifdef HAVE_SYS_UTSNAME_H
 #include <sys/utsname.h>
--- a/liboctave/sparse-sort.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/liboctave/sparse-sort.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -26,6 +26,7 @@
 #endif
 
 #include <cassert>
+#include <cstring>
 
 #include "oct-sort.cc"
 #include "quit.h"
--- a/src/ChangeLog	Mon Oct 22 14:09:54 2007 +0000
+++ b/src/ChangeLog	Mon Oct 22 16:55:41 2007 +0000
@@ -1,3 +1,7 @@
+2007-10-22  Kim Hansen  <kimhanse@gmail.com>
+
+	* unwind-prot.cc: Include <cstring>.
+
 2007-10-22  David Bateman  <dbateman@free.fr>
 
         * data.cc (Ftic, Ftoc, Fcputime): New builtin versions of the
--- a/src/unwind-prot.cc	Mon Oct 22 14:09:54 2007 +0000
+++ b/src/unwind-prot.cc	Mon Oct 22 16:55:41 2007 +0000
@@ -26,6 +26,7 @@
 #endif
 
 #include <cstddef>
+#include <cstring>
 
 #include "CMatrix.h"