bincimap

Log | Files | Refs | LICENSE

commit b61d52e03aa303fcc2cf35867c9f88941208ce26
parent fe52926a4c0aae6336950d6e813ae855fb93bc21
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date:   Sun, 25 Oct 2020 13:33:51 +0100

Add the gentoo gcc4.3-patch

Diffstat:
Msrc/convert.cc | 2++
Msrc/convert.h | 3+++
Msrc/tools.cc | 3+++
3 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/convert.cc b/src/convert.cc @@ -39,6 +39,8 @@ #include "io.h" #include <string> +#include <cstring> + using namespace ::std; using namespace Binc; diff --git a/src/convert.h b/src/convert.h @@ -37,6 +37,7 @@ #ifndef convert_h_included #define convert_h_included +#include <cstdlib> #include <string> #include <vector> #include <iomanip> @@ -48,6 +49,8 @@ #include "address.h" #include "depot.h" +#include <cstring> + namespace Binc { //---------------------------------------------------------------------- diff --git a/src/tools.cc b/src/tools.cc @@ -35,9 +35,12 @@ #include <config.h> #endif #include <errno.h> +#include <cstdlib> #include "tools.h" +#include <cstring> + using namespace ::std; using namespace Binc;