revert runtime file.
[repair.git] / Repair / RepairInterpreter / stack.h
1 #ifndef STACK_H
2 #define STACK_H
3
4 struct StackElement {
5   struct StackElement * next;
6   void * contents;
7 };
8 void pushstack(struct StackElement **septr,void * obj);
9 void * popstack(struct StackElement **septr);
10 #endif