From: Godzil Date: Tue, 12 Mar 2013 01:05:07 +0000 (+0100) Subject: Change arith type to force it to be 32bit. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=5362498c1cae478d045e4e4a61036bc71425f138;p=ack.git Change arith type to force it to be 32bit. --- diff --git a/lang/cem/cpp.ansi/arith.h b/lang/cem/cpp.ansi/arith.h index be74a1887..96dc435af 100644 --- a/lang/cem/cpp.ansi/arith.h +++ b/lang/cem/cpp.ansi/arith.h @@ -15,4 +15,11 @@ /* All preprocessor arithmetic should be done in longs. */ -#define arith long /* dummy */ +#ifndef LANG_CEM_CPP_ANSI_ARITH_H +#define LANG_CEM_CPP_ANSI_ARITH_H + +#include + +#define arith int32_t /* dummy */ + +#endif /* LANG_CEM_CPP_ANSI_ARITH_H */