diff options
Diffstat (limited to 'src/bin/psql/tab-complete.h')
-rw-r--r-- | src/bin/psql/tab-complete.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/bin/psql/tab-complete.h b/src/bin/psql/tab-complete.h index 9dcd7e742db..0e9a4302c70 100644 --- a/src/bin/psql/tab-complete.h +++ b/src/bin/psql/tab-complete.h @@ -8,8 +8,10 @@ #ifndef TAB_COMPLETE_H #define TAB_COMPLETE_H -#include "postgres_fe.h" +#include "pqexpbuffer.h" -void initialize_readline(void); +extern PQExpBuffer tab_completion_query_buf; -#endif +extern void initialize_readline(void); + +#endif /* TAB_COMPLETE_H */ |