10 lines
139 B
C
10 lines
139 B
C
|
|
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
#define STACK_INITIAL_SIZE 2 /* number of initial stack pages */
|
|
|
|
void stack_bootstrap();
|
|
|
|
#endif
|