arith.h 748 B

12345678910111213141516171819202122232425
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. /* COMPILER ARITHMETIC */
  7. /* Normally the compiler does its internal arithmetics in longs
  8. native to the source machine, which is always good for local
  9. compilations, and generally OK too for cross compilations
  10. downwards and sidewards. For upwards cross compilation and
  11. to save storage on small machines, SPECIAL_ARITHMETICS will
  12. be handy.
  13. */
  14. /* All preprocessor arithmetic should be done in longs.
  15. */
  16. #ifndef LANG_CEM_CPP_ANSI_ARITH_H
  17. #define LANG_CEM_CPP_ANSI_ARITH_H
  18. #include <stdint.h>
  19. typedef int32_t arith; /* dummy */
  20. #endif /* LANG_CEM_CPP_ANSI_ARITH_H */