size_type.h 396 B

123456789101112131415
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* This file defines size_type if _EM_WSIZE and _EM_PSIZE are defined.
  7. */
  8. #if defined(_EM_WSIZE) && defined(_EM_PSIZE)
  9. #if _EM_WSIZE == _EM_PSIZE
  10. #define size_type unsigned int
  11. #else
  12. #define size_type long
  13. #endif
  14. #endif