diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-02-16 13:15:26 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-02-16 13:15:26 +0000 |
commit | 78693c89d77cf6443a1a98fc38a83d9d563e2aa4 (patch) | |
tree | 6b9c81acf395f8faaae852d58129a470be3e312d /src/bin/psql/tab-complete.c | |
parent | 5933f1857f572fffcd783ea79c5f6e671fa2b599 (diff) |
Clean up include files use in psql.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 8f8c2fad8c7..83e3041fd94 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -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" |