#ifndef __P # if defined(__STDC__) || defined(__GNUC__) # define __P(x) x # else # define __P(x) () # endif #endif /*------------------------------------------------------------\ | | | Tool : RDS | | | | File : rdsalloc.h | | | | Authors : Jacomme Ludovic | | | | Date : 27.06.95 | | | \------------------------------------------------------------*/ # ifndef RDS_ALLOC_H # define RDS_ALLOC_H /*------------------------------------------------------------\ | | | Constants | | | \------------------------------------------------------------*/ # define RDS_ALLOC_SIZE 512 # define RDS_ALLOC_SHIFT 9 /*------------------------------------------------------------\ | | | Macro | | | \------------------------------------------------------------*/ # define bzero(b,len) memset((b), 0, (size_t)(len)) /*------------------------------------------------------------\ | | | Types | | | \------------------------------------------------------------*/ /*------------------------------------------------------------\ | | | Variables | | | \------------------------------------------------------------*/ extern char *RdsHeapHeadArray[ 256 ]; /*------------------------------------------------------------\ | | | Functions | | | \------------------------------------------------------------*/ # endif