diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:53 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:53 +0000 |
commit | 4d055c05ce287dabd9e224af5c71d690a44b2db6 (patch) | |
tree | 2b2c9a976dc88f1aec2b381f0c03c8ed597adeab /apt-pkg/contrib/fileutl.cc | |
parent | 233b185f104d72df97b953362ef154e628a3c4c8 (diff) |
G++3 fixes from Randolph
Author: jgg
Date: 2001-05-07 05:25:13 GMT
G++3 fixes from Randolph
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 97dcb82b8..4db73c479 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.cc,v 1.38 2001/04/22 05:42:52 jgg Exp $ +// $Id: fileutl.cc,v 1.39 2001/05/07 05:30:31 jgg Exp $ /* ###################################################################### File Utilities @@ -23,6 +23,7 @@ #include <apti18n.h> +#include <iostream> #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> @@ -33,6 +34,8 @@ #include <errno.h> /*}}}*/ +using namespace std; + // CopyFile - Buffered copy of a file /*{{{*/ // --------------------------------------------------------------------- /* The caller is expected to set things so that failure causes erasure */ |