diff options
author | Michael Vogt <egon@bottom> | 2007-09-10 16:02:28 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2007-09-10 16:02:28 +0200 |
commit | a3259857ed1ba6a5624c781e804f4c1a6bdb37aa (patch) | |
tree | 0bd3119b270b50bdc341eb7b1ed738394eae9be6 /apt-pkg/contrib/error.cc | |
parent | d4db3e0afce3492d75ab2226393f93e58b0fbfde (diff) | |
parent | 4f333a8bea2c8431df2ec92001981355623818e8 (diff) |
* make apt build with g++ 4.3
Diffstat (limited to 'apt-pkg/contrib/error.cc')
-rw-r--r-- | apt-pkg/contrib/error.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apt-pkg/contrib/error.cc b/apt-pkg/contrib/error.cc index 8c2d6cb19..db8c53c36 100644 --- a/apt-pkg/contrib/error.cc +++ b/apt-pkg/contrib/error.cc @@ -19,10 +19,12 @@ #include <iostream> #include <errno.h> #include <stdio.h> -#include <string> #include <stdarg.h> #include <unistd.h> +#include <string> +#include <cstring> + #include "config.h" /*}}}*/ |