diff options
| author | Bruce Momjian | 1996-11-08 20:46:33 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1996-11-08 20:46:33 +0000 |
| commit | c9c0e111b8d5c186c4cf3742a00e3163f02fab53 (patch) | |
| tree | 3bef47505275f261ec40537ae280af6d29287b5a /src/include/parser | |
| parent | 8006c6f52f67cccaa9d57e2c895d95b609372c41 (diff) | |
More compile cleanups
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/gramparse.h | 24 |
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 */ |
