diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 01:03:12 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 01:03:12 +0000 |
| commit | fb51ad3419ea84d7ad23edbc931e1b575c803e2a (patch) | |
| tree | a6bed06804d3ea14f05c0b9cd9ae45423faf4413 /src/include/bootstrap/bootstrap.h | |
| parent | 012abebab1bc72043f3f670bf32e91ae4ee04bd2 (diff) | |
| download | postgresql-fb51ad3419ea84d7ad23edbc931e1b575c803e2a.tar.gz | |
Make all our flex and bison files use %option prefix or %name-prefix
(respectively) to rename yylex and related symbols. Some were doing
it this way already, while others used not-too-reliable sed hacks in
the Makefiles. It's all nice and consistent now.
Diffstat (limited to 'src/include/bootstrap/bootstrap.h')
| -rw-r--r-- | src/include/bootstrap/bootstrap.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index a8d4a2e063..ae5b3d325d 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/bootstrap/bootstrap.h,v 1.40 2006/03/05 15:58:54 momjian Exp $ + * $PostgreSQL: pgsql/src/include/bootstrap/bootstrap.h,v 1.41 2006/03/07 01:03:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -52,8 +52,10 @@ extern char *CleanUpStr(char *s); extern int EnterString(char *str); extern void build_indices(void); -extern int Int_yylex(void); -extern void Int_yyerror(const char *str); +extern int boot_yyparse(void); + +extern int boot_yylex(void); +extern void boot_yyerror(const char *str); #define BS_XLOG_NOP 0 #define BS_XLOG_BOOTSTRAP 1 |
