summaryrefslogtreecommitdiff
path: root/libc/malloc2/stack.c
blob: 5f33e2155b221c987a51d22cf0f3a56978211e0c (plain)
1
2
3
4
5
6
7
8
9
10

/*
 * Under Linux 8086 the stack and heap areas are at the top and bottom
 * of the same area of memory, this version of malloc requires that the
 * malloc area is of a fixed size this means that there must also be a
 * specific amount of stack space reserved outside of this. The number
 * of bytes to be reserved is specified below.
 */

int __STACKSIZE = 2048;