summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorBruce Momjian1996-11-08 20:46:33 +0000
committerBruce Momjian1996-11-08 20:46:33 +0000
commitc9c0e111b8d5c186c4cf3742a00e3163f02fab53 (patch)
tree3bef47505275f261ec40537ae280af6d29287b5a /src/include/parser
parent8006c6f52f67cccaa9d57e2c895d95b609372c41 (diff)
More compile cleanups
Diffstat (limited to 'src/include/parser')
-rw-r--r--src/include/parser/gramparse.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h
new file mode 100644
index 00000000000..95de9f0f395
--- /dev/null
+++ b/src/include/parser/gramparse.h
@@ -0,0 +1,24 @@
+/*-------------------------------------------------------------------------
+ *
+ * gramparse.h--
+ * scanner support routines. used by both the bootstrap lexer
+ * as well as the normal lexer
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: gramparse.h,v 1.1 1996/11/08 20:46:26 momjian Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+
+#ifndef GRAMPARSE_H
+#define GRAMPARSE_H /* include once only */
+
+/* from scan.l */
+extern void init_io();
+
+/* from gram.y */
+extern void parser_init(Oid *typev, int nargs);
+extern int yyparse();
+
+#endif /* GRAMPARSE_H */