#ifndef AMALGAM_BINOP_TYPE_H #define AMALGAM_BINOP_TYPE_H typedef enum { BINOP_ADD, BINOP_SUB, BINOP_MUL, BINOP_DIV, BINOP_DOT } BinopType; #endif