blob: f7f54dd6b4b590c07e0c75198bbf9da7743dd08e (
plain)
1
2
3
4
5
6
7
8
|
#include "3cl.h"
#include "instruction.h"
struct CCLFrame *ccl_instruction_decrement(struct CCL *ccl, struct CCLFrame *frame)
{
--ccl->stack.stack[ccl->stack.cur];
return frame;
}
|