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 /test | |
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 'test')
-rw-r--r-- | test/versiontest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/versiontest.cc b/test/versiontest.cc index 20da49b72..3f90adf05 100644 --- a/test/versiontest.cc +++ b/test/versiontest.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: versiontest.cc,v 1.2 2001/02/20 07:03:18 jgg Exp $ +// $Id: versiontest.cc,v 1.3 2002/03/26 07:38:58 jgg Exp $ /* ###################################################################### Version Test - Simple program to run through a file and comare versions. @@ -18,8 +18,8 @@ #include <system.h> #include <apt-pkg/error.h> #include <apt-pkg/version.h> -#include <iostream.h> -#include <fstream.h> +#include <iostream> +#include <fstream> static int verrevcmp(const char *val, const char *ref) { |