From 5362498c1cae478d045e4e4a61036bc71425f138 Mon Sep 17 00:00:00 2001 From: Godzil Date: Tue, 12 Mar 2013 02:05:07 +0100 Subject: [PATCH] Change arith type to force it to be 32bit. --- lang/cem/cpp.ansi/arith.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 */ -- 2.34.1