Change arith type to force it to be 32bit.

This commit is contained in:
Godzil 2013-03-12 02:05:07 +01:00 committed by Manoël Trapier
parent f6d58a0d04
commit 5362498c1c

View File

@ -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 <stdint.h>
#define arith int32_t /* dummy */
#endif /* LANG_CEM_CPP_ANSI_ARITH_H */