diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-08-17 03:50:43 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-08-17 03:50:43 +0000 |
commit | 93120330713916c28f87deb3466010b1f23a213e (patch) | |
tree | fc56a3e099f78a8f4d3b10a1c4fbfc1aba594099 /src/interfaces/libpq/fe-print.c | |
parent | 3fa676a74cd7f4e010610e1da1bf17395b1d05c7 (diff) |
Date: Sun, 16 Aug 1998 14:56:48 -0400
From: Tom Lane <tgl@sss.pgh.pa.us>
Attached is a patch for this weekend's work on libpq. I've dealt
with several issues:
<for details: see message, in pgsql-patches archive for above data>
Diffstat (limited to 'src/interfaces/libpq/fe-print.c')
-rw-r--r-- | src/interfaces/libpq/fe-print.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/interfaces/libpq/fe-print.c b/src/interfaces/libpq/fe-print.c index f60231be699..4671373090d 100644 --- a/src/interfaces/libpq/fe-print.c +++ b/src/interfaces/libpq/fe-print.c @@ -9,31 +9,31 @@ * didn't really belong there. * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.9 1998/08/09 02:59:30 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.10 1998/08/17 03:50:39 scrappy Exp $ * *------------------------------------------------------------------------- */ +#include "libpq-fe.h" +#include "libpq-int.h" +#include "postgres.h" +#include "pqsignal.h" + #ifdef WIN32 #include "win32.h" -#endif -#include <postgres.h> -#include <stdlib.h> -#include <stdio.h> -#include <signal.h> -#include <string.h> -#ifndef WIN32 +#else +#if !defined(NO_UNISTD_H) #include <unistd.h> -#include <sys/ioctl.h> #endif -#include "libpq/pqsignal.h" -#include "libpq-fe.h" -#ifndef WIN32 +#include <sys/ioctl.h> #ifndef HAVE_TERMIOS_H #include <sys/termios.h> #else #include <termios.h> #endif #endif /* WIN32 */ +#include <stdlib.h> +#include <signal.h> +#include <string.h> #ifdef MULTIBYTE #include "mb/pg_wchar.h" |