diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-14 18:49:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-14 18:49:42 +0000 |
commit | 80cedf9ba0e9f9c386dc3099956fe187f915cb02 (patch) | |
tree | 1f8c69d55bcb232c7554814a7570410f555c6422 /src | |
parent | dbb4dd29e9c193a83ebf5501f7f4304bd603b4e8 (diff) | |
download | postgresql-80cedf9ba0e9f9c386dc3099956fe187f915cb02.tar.gz postgresql-80cedf9ba0e9f9c386dc3099956fe187f915cb02.zip |
Someone moved PageOutput here from common.c, but forgot to move all
the #includes it depends on.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/print.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index adea775aa47..95bc2797c47 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.42 2003/08/04 23:59:40 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.43 2003/08/14 18:49:42 tgl Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -20,6 +20,10 @@ #include <sys/ioctl.h> /* for ioctl() */ #endif +#ifdef HAVE_TERMIOS_H +#include <termios.h> +#endif + #include "pqsignal.h" #include "libpq-fe.h" |