aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/hterror.h
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-05-21 11:30:55 +0000
committerdos-reis <gdr@axiomatics.org>2008-05-21 11:30:55 +0000
commit28aeada5c757a5a997526f74a471cf0c56c6b473 (patch)
treecd153e60571f07568a7e96a802d56100ed60a5c3 /src/hyper/hterror.h
parent7efb5764ecb6e7141c207bd906d9ac7f49342126 (diff)
downloadopen-axiom-28aeada5c757a5a997526f74a471cf0c56c6b473.tar.gz
* graph/Gdraws/Makefile.in (HEADERS): Don't include hash.H1.
* include/halloc.h: Rename from include/halloc.H1. * include/lex.H1: Remove. * include/hterror.H1: Likewise. * hyper/halloc.c: Likewise. * hyper/hash.c: Likewise. * hyper/Makefile.in (hypertex_SOURCES): Don't include hash.c, halloc.c.
Diffstat (limited to 'src/hyper/hterror.h')
-rw-r--r--src/hyper/hterror.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/hyper/hterror.h b/src/hyper/hterror.h
index 1ecf63d1..6e2b0ae4 100644
--- a/src/hyper/hterror.h
+++ b/src/hyper/hterror.h
@@ -33,13 +33,18 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#ifndef OPENAXIOM_HTERROR
+#define OPENAXIOM_HTERROR
+
#define HTCONDNODE 1 /* unrecognized condition node */
#define KEYTYPE 2 /* unrecognized keyword found in lex.c */
#define Numerrors 2
-#ifdef HTERROR
-char *errmess[] = {
- "place holder",
- "parsing condition node",
- "unrecognized keyword" };
-#endif
+extern void print_page_and_filename(void);
+extern void jump(void);
+extern void print_token(void);
+extern void token_name(int);
+extern void print_next_ten_tokens(void);
+extern void htperror(char* , int);
+
+#endif /* OPENAXIOM_HTERROR */