Pristine Ack-5.5
[Ack-5.5.git] / modules / src / malloc / size_type.h
1 /* $Id: size_type.h,v 1.2 1994/06/24 11:18:13 ceriel Exp $ */
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
9 #if defined(_EM_WSIZE) && defined(_EM_PSIZE)
10 #if _EM_WSIZE == _EM_PSIZE
11 #define size_type       unsigned int
12 #else
13 #define size_type       long
14 #endif
15 #endif