blob: 98f3e9546f105743582bfcf569c6ff1fad2dc597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.h,v 1.5 2000/04/12 17:16:23 momjian Exp $
*/
#ifndef TAB_COMPLETE_H
#define TAB_COMPLETE_H
#include "postgres.h"
void initialize_readline(void);
#endif
|