8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3240d commit b834d27Copy full SHA for b834d27
src/interfaces/libpq/fe-exec.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.7 1996/07/27 02:55:19 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.8 1996/07/28 06:54:15 scrappy Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -21,9 +21,17 @@
21
#include "libpq-fe.h"
22
#include <signal.h>
23
#include <sys/ioctl.h>
24
+#ifdef PORTNAME_sparc_solaris
25
+#include <sys/termios.h>
26
+#endif
27
28
#ifdef TIOCGWINSZ
29
struct winsize screen_size;
30
+#else
31
+struct winsize {
32
+ int ws_row;
33
+ int ws_col;
34
+} screen_size;
35
#endif
36
37
/* the tuples array in a PGresGroup has to grow to accommodate the tuples */
0 commit comments