ack/mach/proto/mcg/push_pop.h
2016-09-17 22:21:47 +02:00

13 lines
142 B
C

#ifndef PUSH_POP_H
#define PUSH_POP_H
struct stackop {
bool push : 1;
char type : 7;
};
extern const struct stackop* stackops[];
#endif