 /*
 |  Memory allocation stuff
*/

#ifndef _HAVE_ALLOC_H_
#define _HAVE_ALLOC_H_


/* Random numbers: */
#define USED	0xa645
#define FREE	0x0f92


/* Prepended to all memory blocks */
typedef struct mblk
{
	short	size;
	short	use;
} mblk;


/* Visable functions */
char *wmalloc();
void wfree();


#endif

