diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-26 03:43:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-26 03:43:18 +0000 |
commit | b7044266187a9f646589cb3aa2482d028cd0a87f (patch) | |
tree | fbb5f1a7472a56ddb4d47b639035ecec6641b97e /src/include/parser/gramparse.h | |
parent | 97ad0b1cd43527295159f2081be4d002be91f374 (diff) | |
download | postgresql-b7044266187a9f646589cb3aa2482d028cd0a87f.tar.gz |
Make parser functions static where possible.
Diffstat (limited to 'src/include/parser/gramparse.h')
-rw-r--r-- | src/include/parser/gramparse.h | 3 |
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); |