summaryrefslogtreecommitdiff
path: root/src/include/parser/gramparse.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-11-26 03:43:18 +0000
committerBruce Momjian <bruce@momjian.us>1997-11-26 03:43:18 +0000
commitb7044266187a9f646589cb3aa2482d028cd0a87f (patch)
treefbb5f1a7472a56ddb4d47b639035ecec6641b97e /src/include/parser/gramparse.h
parent97ad0b1cd43527295159f2081be4d002be91f374 (diff)
downloadpostgresql-b7044266187a9f646589cb3aa2482d028cd0a87f.tar.gz
Make parser functions static where possible.
Diffstat (limited to 'src/include/parser/gramparse.h')
-rw-r--r--src/include/parser/gramparse.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h
index 2fb04acd56..db400cb416 100644
--- a/src/include/parser/gramparse.h
+++ b/src/include/parser/gramparse.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: gramparse.h,v 1.5 1997/09/08 21:53:37 momjian Exp $
+ * $Id: gramparse.h,v 1.6 1997/11/26 03:43:05 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,6 +18,7 @@
extern void init_io(void);
/* from gram.y */
+extern Oid param_type(int t);
extern void parser_init(Oid *typev, int nargs);
extern int yyparse(void);