Subversion Repositories HelenOS-historic

Rev

Rev 102 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 102 Rev 265
Line 35... Line 35...
35
struct chunk {
35
struct chunk {
36
    int used;
36
    int used;
37
    struct chunk *next;
37
    struct chunk *next;
38
    struct chunk *prev;
38
    struct chunk *prev;
39
    __u32 size;
39
    __u32 size;
40
    __u8 data[0];
40
    __native data[0];
41
};
41
};
42
 
42
 
43
extern void heap_init(__address heap, size_t size);
43
extern void heap_init(__address heap, size_t size);
44
 
44
 
45
extern void *malloc(size_t size);
45
extern void *malloc(size_t size);