26 lines
750 B
C
26 lines
750 B
C
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
/* $Id$ */
|
|
/* COMPILER ARITHMETIC */
|
|
|
|
/* Normally the compiler does its internal arithmetics in longs
|
|
native to the source machine, which is always good for local
|
|
compilations, and generally OK too for cross compilations
|
|
downwards and sidewards. For upwards cross compilation and
|
|
to save storage on small machines, SPECIAL_ARITHMETICS will
|
|
be handy.
|
|
*/
|
|
|
|
/* All preprocessor arithmetic should be done in longs.
|
|
*/
|
|
#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 */
|