fixed bug in prepareStackForAbsOpt (rtemgr.c).
[bugg-scheme-compiler.git] / src / c / rtemgr.h~
blob72c78e6279cb40fd4bd52244d5683f895a5303cb
1 /* Run-Time Enviroment Manager */
3 #ifndef __RTEMGR_H
4 #define __RTEMGR_H
6 int** extendEnviroment(int** currenv, int currenv_size);
7 void shiftActFrmDown();
8 void shiftStackUp(int pos, unsigned int amount);
9 void shiftStackDown(int pos, unsigned int amount);
10 void prepareStackForAbsOpt(int formalParams);
12 #endif