From 3aedaa781bd58d1cc79ea309be27bfd207e39482 Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Tue, 14 May 2019 01:59:23 -0700
Subject: Use correct terminology in error message

---
 decl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/decl.c b/decl.c
index a5c4baf..d532029 100644
--- a/decl.c
+++ b/decl.c
@@ -924,7 +924,7 @@ decl(struct scope *s, struct func *f)
 				error(&tok.loc, "function '%s' with block scope may only have storage class 'extern'", name);
 			if (!t->func.isprototype && t->func.params) {
 				if (!allowfunc)
-					error(&tok.loc, "function declaration not allowed");
+					error(&tok.loc, "function definition not allowed");
 				/* collect type information for parameters before we check compatibility */
 				while (paramdecl(s, t->func.params))
 					;
@@ -938,7 +938,7 @@ decl(struct scope *s, struct func *f)
 			d = declcommon(s, kind, name, t, tq, sc, prior);
 			if (tok.kind == TLBRACE) {
 				if (!allowfunc)
-					error(&tok.loc, "function declaration not allowed");
+					error(&tok.loc, "function definition not allowed");
 				if (d->defined)
 					error(&tok.loc, "function '%s' redefined", name);
 				s = mkscope(&filescope);
-- 
cgit v1.2.3