summaryrefslogtreecommitdiff
path: root/mh/mh_fmtgram.y
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-06-12 10:30:50 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-06-12 10:30:50 +0000
commit5b991f927f9d8efa8e1b442db7ca8fdfd60c2bb3 (patch)
tree9d1fd873be8f860087c41b1d21c86d5b98e22d9e /mh/mh_fmtgram.y
parentdbd6563f43b2efad6079c4fb53cedd745a6c926c (diff)
downloadmailutils-5b991f927f9d8efa8e1b442db7ca8fdfd60c2bb3.tar.gz
mailutils-5b991f927f9d8efa8e1b442db7ca8fdfd60c2bb3.tar.bz2
Provide forward declarations for yyerror and yylex.
Diffstat (limited to 'mh/mh_fmtgram.y')
-rw-r--r--mh/mh_fmtgram.y7
1 files changed, 5 insertions, 2 deletions
diff --git a/mh/mh_fmtgram.y b/mh/mh_fmtgram.y
index 7331bf617..19fb11677 100644
--- a/mh/mh_fmtgram.y
+++ b/mh/mh_fmtgram.y
@@ -1,6 +1,6 @@
%{
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -20,7 +20,10 @@
#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
#include <obstack.h>
-
+
+int yyerror (char *s);
+int yylex ();
+
static mh_format_t format; /* Format structure being built */
static size_t pc; /* Program counter. Poins to current
cell in format.prog */

Return to:

Send suggestions and report system problems to the System administrator.