1 #ifndef __TL__MALLOC_H
\r
2 #define __TL__MALLOC_H
\r
12 #define MALLOC_MAGIC 0x6D92 /* must be < 0x8000 */
\r
14 typedef struct _malloc /* Turbo C DJGPP */
\r
16 size_t size; /* 2 bytes 4 bytes */
\r
17 struct _malloc *next; /* 2 bytes 4 bytes */
\r
18 unsigned magic : 15; /* 2 bytes total 4 bytes total */
\r
20 } malloc_t; /* total 6 bytes 12 bytes */
\r
22 extern malloc_t *_heap_bot, *_heap_top;
\r