ack/mach/proto/mcg/push_pop.h

13 lines
142 B
C
Raw Normal View History

2016-09-17 20:21:47 +00:00
#ifndef PUSH_POP_H
#define PUSH_POP_H
struct stackop {
bool push : 1;
char type : 7;
};
extern const struct stackop* stackops[];
#endif