diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-30 07:10:07 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-30 07:10:07 +0000 |
commit | 092b63320ce597706db881ed722864e3888f0368 (patch) | |
tree | 08abdb8c93af8a996c2840fa3c8fffe70af482f9 /libio | |
parent | 3754a8bb7c28fc483156f2ce34953899a9132a6f (diff) | |
download | gcc-092b63320ce597706db881ed722864e3888f0368.tar.gz |
* editbuf.cc, parsestream.cc, pfstream.cc: Include string.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29725 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio')
-rw-r--r-- | libio/ChangeLog | 4 | ||||
-rw-r--r-- | libio/editbuf.cc | 1 | ||||
-rw-r--r-- | libio/parsestream.cc | 1 | ||||
-rw-r--r-- | libio/pfstream.cc | 1 |
4 files changed, 7 insertions, 0 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index 6c8cf9d2355..fcdb29773e2 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 30 01:08:04 1999 Jeffrey A Law (law@cygnus.com) + + * editbuf.cc, parsestream.cc, pfstream.cc: Include string.h. + Mon Sep 13 06:30:14 1999 Mark Klein <mklein@dis.com> * config/mpeix.mt: New for MPEiX port. diff --git a/libio/editbuf.cc b/libio/editbuf.cc index 22304820f8f..e2df8c4641c 100644 --- a/libio/editbuf.cc +++ b/libio/editbuf.cc @@ -31,6 +31,7 @@ Written by Per Bothner (bothner@cygnus.com). */ #include "editbuf.h" #include <stddef.h> #include <stdlib.h> +#include <string.h> /* NOTE: Some of the code here is taken from GNU emacs */ /* Hence this file falls under the GNU License! */ diff --git a/libio/parsestream.cc b/libio/parsestream.cc index e430e602c8d..711733221b5 100644 --- a/libio/parsestream.cc +++ b/libio/parsestream.cc @@ -30,6 +30,7 @@ Written by Per Bothner (bothner@cygnus.com). */ #include "libioP.h" #include "parsestream.h" #include <stdlib.h> +#include <string.h> streambuf* parsebuf::setbuf(char*, int) { diff --git a/libio/pfstream.cc b/libio/pfstream.cc index 3fa93c958f8..a438718f388 100644 --- a/libio/pfstream.cc +++ b/libio/pfstream.cc @@ -30,6 +30,7 @@ the executable file might be covered by the GNU General Public License. */ #include "libioP.h" #include <pfstream.h> #include <procbuf.h> +#include <string.h> ipfstream::ipfstream(const char *name, int mode, int prot) { |