Change arith type to force it to be 32bit.
authorGodzil <godzil@godzil.net>
Tue, 12 Mar 2013 01:05:07 +0000 (02:05 +0100)
committerManoël Trapier <godzil@MacBook-Pro.home>
Wed, 24 Jun 2015 22:41:44 +0000 (23:41 +0100)
lang/cem/cpp.ansi/arith.h

index be74a18..96dc435 100644 (file)
 
 /*     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 */