Go to the first, previous, next, last section, table of contents.


_stklen

Syntax

extern int _stklen;

Description

This variable sets the minimum stack length that the program requires. Note that the stack may be much larger than this. This value should be set statically, as it is only used at startup.

Portability

not ANSI, not POSIX

Example

int _stklen = 256000;


Go to the first, previous, next, last section, table of contents.