diff options
| author | Tom Lane | 2000-01-20 05:26:54 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-01-20 05:26:54 +0000 |
| commit | 1c1518674727b903840ad235f06104d7ac3c0465 (patch) | |
| tree | 6639b1549c7979b7e3a5205348c21b2c1bcfa2a1 /src/include/parser | |
| parent | b6fdd147650e17a0c47dc30dacfcf78b7bc10882 (diff) | |
Clean up longstanding gcc warnings by adding missing extern
declarations.
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/gramparse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h index 6af8242e965..3433865fa75 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.9 1999/02/13 23:21:55 momjian Exp $ + * $Id: gramparse.h,v 1.10 2000/01/20 05:26:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,6 +16,8 @@ /* from scan.l */ extern void init_io(void); +extern int yylex(void); +extern void yyerror(const char * message); /* from gram.y */ extern Oid param_type(int t); |
