aboutsummaryrefslogtreecommitdiffhomepage
path: root/c/c.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/c.c')
-rw-r--r--c/c.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/c/c.c b/c/c.c
index 14f988e..8b5339d 100644
--- a/c/c.c
+++ b/c/c.c
@@ -75,14 +75,6 @@ expect(struct comp *cm, enum toktag t, const char *s)
}
return 1;
}
-static struct token
-expectdie(struct comp *cm, enum toktag t, const char *s)
-{
- struct token tk;
- if (!match(cm, &tk, t))
- fatal(&tk.span, "expected %'tt%s%s", t, s?" ":"",s ? s : "");
- return tk;
-}
/******************************************/
/* Data structures for declaration parser */