home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
libraries
/
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