diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:58 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:58 +0000 |
commit | 90f057fdded3af992d2937f2b7b9a6a97447d0f1 (patch) | |
tree | 8aa11ca8cc53042532b1e31f2ec340f1277a1cd0 /apt-inst | |
parent | 877d310f1af44e2acf8d12fe4a3341e5562e74bc (diff) |
Use std C++ header names for includes
Author: jgg
Date: 2002-03-26 07:38:57 GMT
Use std C++ header names for includes
Diffstat (limited to 'apt-inst')
-rw-r--r-- | apt-inst/contrib/extracttar.cc | 4 | ||||
-rw-r--r-- | apt-inst/deb/dpkgdb.cc | 4 | ||||
-rw-r--r-- | apt-inst/extract.cc | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/apt-inst/contrib/extracttar.cc b/apt-inst/contrib/extracttar.cc index 95869fe4a..e0feaee12 100644 --- a/apt-inst/contrib/extracttar.cc +++ b/apt-inst/contrib/extracttar.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: extracttar.cc,v 1.4 2001/09/30 04:06:59 jgg Exp $ +// $Id: extracttar.cc,v 1.5 2002/03/26 07:38:58 jgg Exp $ /* ###################################################################### Extract a Tar - Tar Extractor @@ -30,7 +30,7 @@ #include <unistd.h> #include <signal.h> #include <fcntl.h> -#include <iostream.h> +#include <iostream> /*}}}*/ // The on disk header for a tar file. diff --git a/apt-inst/deb/dpkgdb.cc b/apt-inst/deb/dpkgdb.cc index 047702f50..6c790540c 100644 --- a/apt-inst/deb/dpkgdb.cc +++ b/apt-inst/deb/dpkgdb.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: dpkgdb.cc,v 1.4 2001/05/27 23:50:42 jgg Exp $ +// $Id: dpkgdb.cc,v 1.5 2002/03/26 07:38:58 jgg Exp $ /* ###################################################################### DPKGv1 Database Implemenation @@ -31,7 +31,7 @@ #include <fcntl.h> #include <unistd.h> #include <ctype.h> -#include <iostream.h> +#include <iostream> /*}}}*/ // EraseDir - Erase A Directory /*{{{*/ diff --git a/apt-inst/extract.cc b/apt-inst/extract.cc index 5c5ad55b2..d184a5e9d 100644 --- a/apt-inst/extract.cc +++ b/apt-inst/extract.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: extract.cc,v 1.3 2001/05/27 23:47:14 jgg Exp $ +// $Id: extract.cc,v 1.4 2002/03/26 07:38:57 jgg Exp $ /* ###################################################################### Archive Extraction Directory Stream @@ -56,7 +56,7 @@ #include <unistd.h> #include <errno.h> #include <dirent.h> -#include <iostream.h> +#include <iostream> /*}}}*/ static const char *TempExt = "dpkg-tmp"; |