diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-16 14:34:59 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-16 14:34:59 +0000 |
commit | bbf3748347574d838ebcc0a6f61ee6da7e70822b (patch) | |
tree | a131e30554eb7401a326a999e64f49581b022645 /src | |
parent | 2132e062e1732d4a8b975cbbce3beb7e083b7979 (diff) | |
download | postgresql-bbf3748347574d838ebcc0a6f61ee6da7e70822b.tar.gz postgresql-bbf3748347574d838ebcc0a6f61ee6da7e70822b.zip |
Change iostream to iostream.h, strstream to strstream.h
for compatibility with older C++ libraries.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq++/pgconnection.cc | 4 | ||||
-rw-r--r-- | src/interfaces/libpq++/pgenv.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq++/pgconnection.cc b/src/interfaces/libpq++/pgconnection.cc index 9cbdd896171..73b198adf32 100644 --- a/src/interfaces/libpq++/pgconnection.cc +++ b/src/interfaces/libpq++/pgconnection.cc @@ -10,14 +10,14 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgconnection.cc,v 1.3 1999/05/10 15:27:18 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/pgconnection.cc,v 1.4 1999/05/16 14:34:59 tgl Exp $ * *------------------------------------------------------------------------- */ #include <stdlib.h> #include <string.h> -#include <strstream> +#include <strstream.h> #include "pgconnection.h" extern "C" { diff --git a/src/interfaces/libpq++/pgenv.h b/src/interfaces/libpq++/pgenv.h index e3e8d6303b6..ae024dc3bd5 100644 --- a/src/interfaces/libpq++/pgenv.h +++ b/src/interfaces/libpq++/pgenv.h @@ -19,7 +19,7 @@ #define PGENV_H #include <string> -#include <iostream> +#include <iostream.h> #ifdef __sun__ #ifndef __GNUC__ |