home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d260
/
cclib.lha
/
CCLib
/
include
/
heapmem.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-10-19
|
286 b
|
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