1987-03-10 17:51:10 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1986-03-10 13:07:55 +00:00
|
|
|
/* $Header$ */
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "spec_arith.h"
|
|
|
|
|
|
|
|
#ifndef SPECIAL_ARITHMETICS
|
|
|
|
|
1986-03-25 16:40:43 +00:00
|
|
|
#include <em_arith.h> /* obtain definition of "arith" */
|
1986-03-10 13:07:55 +00:00
|
|
|
|
1991-12-17 14:11:15 +00:00
|
|
|
#else /* SPECIAL_ARITHMETICS */
|
1986-03-10 13:07:55 +00:00
|
|
|
|
|
|
|
/* not implemented yet */
|
|
|
|
#define arith int /* dummy */
|
|
|
|
|
1991-12-17 14:11:15 +00:00
|
|
|
#endif /* SPECIAL_ARITHMETICS */
|