From aec2f6811846f64f9aad8ee16f691b58f5a87eaa Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 11 Dec 2017 04:52:00 +0100 Subject: [PATCH] mes: Fix compile warning in reader. * src/reader.c[MES_C_READER]: Declare read_block_comment, read_hash. Fixes compile warning. --- src/reader.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/reader.c b/src/reader.c index 06365338..217807b9 100644 --- a/src/reader.c +++ b/src/reader.c @@ -43,6 +43,11 @@ read_line_comment (int c) return read_line_comment (getchar ()); } +#if MES_C_READER +SCM read_block_comment (int s, int c); +SCM read_hash (int c, SCM w, SCM a); +#endif + SCM read_word_ (int c, SCM w, SCM a) {