home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff399.lzh
/
CCLib
/
Include
/
heapmem.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-11-02
|
286b
|
25 lines
#ifndef HEAPMEM_H
#define HEAPMEM_H 1
typedef long ALIGN; /* forces long word alignment */
union header
{
struct
{
union header *ptr;
unsigned long size;
} s;
ALIGN x;
};
typedef union header HEADER;
typedef struct
{
void *ptr;
unsigned long size;
} LastFree;
#endif