summaryrefslogtreecommitdiff
path: root/cmdline
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 /cmdline
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 'cmdline')
-rw-r--r--cmdline/apt-cache.cc4
-rw-r--r--cmdline/apt-get.cc4
-rw-r--r--cmdline/indexcopy.cc4
3 files changed, 6 insertions, 6 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index c82964d18..6acb62cc6 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.57 2002/03/20 05:51:52 jgg Exp $
+// $Id: apt-cache.cc,v 1.58 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
@@ -32,7 +32,7 @@
#include <apti18n.h>
#include <locale.h>
-#include <iostream.h>
+#include <iostream>
#include <unistd.h>
#include <errno.h>
#include <regex.h>
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 98461051e..a6355af31 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-get.cc,v 1.115 2002/03/20 05:51:52 jgg Exp $
+// $Id: apt-get.cc,v 1.116 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -46,7 +46,7 @@
#include "acqprogress.h"
#include <locale.h>
-#include <fstream.h>
+#include <fstream>
#include <termios.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
diff --git a/cmdline/indexcopy.cc b/cmdline/indexcopy.cc
index 48edb143a..3ce12a94b 100644
--- a/cmdline/indexcopy.cc
+++ b/cmdline/indexcopy.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: indexcopy.cc,v 1.9 2001/08/18 22:20:40 jgg Exp $
+// $Id: indexcopy.cc,v 1.10 2002/03/26 07:38:58 jgg Exp $
/* ######################################################################
Index Copying - Aid for copying and verifying the index files
@@ -19,7 +19,7 @@
#include <apt-pkg/configuration.h>
#include <apt-pkg/tagfile.h>
-#include <iostream.h>
+#include <iostream>
#include <unistd.h>
#include <sys/stat.h>
#include <stdio.h>