blob: 7200fd6feb814651409c9fe70ab09fe5d71bb1e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.h,v 1.7 2001/10/25 05:49:54 momjian Exp $
*/
#ifndef TAB_COMPLETE_H
#define TAB_COMPLETE_H
#include "postgres_fe.h"
void initialize_readline(void);
#endif
|