1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Clean up include files use in psql.

This commit is contained in:
Bruce Momjian
2000-02-16 13:15:26 +00:00
parent 5933f1857f
commit 78693c89d7
27 changed files with 65 additions and 134 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.11 2000/02/15 20:49:22 tgl Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.12 2000/02/16 13:15:26 momjian Exp $
*/
/*-----------
@@ -32,7 +32,7 @@
gracefully.
-------------*/
#include <c.h>
#include "postgres.h"
#include "tab-complete.h"
#include "input.h"
@@ -40,15 +40,12 @@
/* If we don't have this, we might as well forget about the whole thing: */
#ifdef USE_READLINE
#include <stdio.h>
#include <string.h>
#include <ctype.h> /* toupper */
#include <stdlib.h> /* malloc, free */
#ifdef USE_ASSERT_CHECKING
#include <assert.h>
#endif
#include <libpq-fe.h>
#include "libpq-fe.h"
#include "common.h"
#include "settings.h"