commit 973134dd5a1b08a04fe438b5fb333c6ab735a89e parent 61899719409df0c278da7ce18cb6ce54bcc1b114 Author: sin <sin@2f30.org> Date: Fri, 9 May 2014 16:44:19 +0100 Remove matchtype() Diffstat:
M | parser.c | | | 6 | ------ |
M | parser.h | | | 1 | - |
2 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/parser.c b/parser.c @@ -14,9 +14,3 @@ newobject(void) return NULL; return o; } - -int -matchtype(struct object *o, enum objtype t) -{ - return o->type == t; -} diff --git a/parser.h b/parser.h @@ -33,5 +33,4 @@ struct object { } d; }; -int matchtype(struct object *, enum objtype); struct object *newobject(void);