summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/parser.y b/parser.y
index be8e6063..6b4f1c70 100644
--- a/parser.y
+++ b/parser.y
@@ -1013,6 +1013,11 @@ not_a_clause : ALL { $$ = make_expr(all_s, nil, num(lineno)); }
%%
+/* C99 inline instantiations. */
+#if __STDC_VERSION__ >= 199901L
+val rlcp(val to, val from);
+#endif
+
static val sym_helper(wchar_t *lexeme, val meta_allowed)
{
int leading_at = *lexeme == L'@';