aboutsummaryrefslogtreecommitdiff
path: root/src/backend/libpq/portalbuf.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-06 08:48:33 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-06 08:48:33 +0000
commita472a29bb427de97d51900e9ce616527a0110b9c (patch)
treeaa7efa584bf8381e74f33c6defeb47878c191c87 /src/backend/libpq/portalbuf.c
parente2329091571485fa6d384be043e50c3ad8e71179 (diff)
downloadpostgresql-a472a29bb427de97d51900e9ce616527a0110b9c.tar.gz
postgresql-a472a29bb427de97d51900e9ce616527a0110b9c.zip
I'm getting there, slowly :)
Diffstat (limited to 'src/backend/libpq/portalbuf.c')
-rw-r--r--src/backend/libpq/portalbuf.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/backend/libpq/portalbuf.c b/src/backend/libpq/portalbuf.c
index 98f225d19d9..e0390c5ae79 100644
--- a/src/backend/libpq/portalbuf.c
+++ b/src/backend/libpq/portalbuf.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.2 1996/10/31 10:37:51 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/libpq/Attic/portalbuf.c,v 1.3 1996/11/06 08:48:29 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -47,12 +47,13 @@
* see utils/mmgr/portalmem.c for why. -cim 2/22/91
*
*/
+#include <string.h>
#include <sys/types.h>
-#include "postgres.h"
-#include "libpq/libpq.h" /* where the declarations go */
-#include "utils/exc.h"
-#include "utils/palloc.h"
+#include <postgres.h>
+
+#include <libpq/libpq.h> /* where the declarations go */
+#include <utils/exc.h>
PortalEntry** portals = (PortalEntry**) NULL;
size_t portals_array_size = 0;