summaryrefslogtreecommitdiff
path: root/apt-inst
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:58:58 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:58:58 +0000
commit90f057fdded3af992d2937f2b7b9a6a97447d0f1 (patch)
tree8aa11ca8cc53042532b1e31f2ec340f1277a1cd0 /apt-inst
parent877d310f1af44e2acf8d12fe4a3341e5562e74bc (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.cc4
-rw-r--r--apt-inst/deb/dpkgdb.cc4
-rw-r--r--apt-inst/extract.cc4
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";