From: Bryan Henderson Date: Mon, 9 Dec 1996 01:24:53 +0000 (+0000) Subject: Remove include of libpq-fe.h. This file has nothing to do with libpq. X-Git-Tag: REL2_0~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33edbdb59b741daed0b26b7033b1ce1b3e70b453;p=postgresql Remove include of libpq-fe.h. This file has nothing to do with libpq. --- diff --git a/src/test/regress/regress.c b/src/test/regress/regress.c index 2281d51467..96edaa9e57 100644 --- a/src/test/regress/regress.c +++ b/src/test/regress/regress.c @@ -1,5 +1,5 @@ /* - * $Header: /cvsroot/pgsql/src/test/regress/regress.c,v 1.3 1996/11/12 11:09:13 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/test/regress/regress.c,v 1.4 1996/12/09 01:24:53 bryanh Exp $ */ #include /* faked on sunos */ @@ -7,7 +7,6 @@ #include /* for memset() */ #include -#include "libpq-fe.h" #include "utils/geo-decls.h" /* includes */ #include "executor/executor.h" /* For GetAttributeByName */ @@ -17,6 +16,8 @@ #define RDELIM ')' #define DELIM ',' +typedef void *TUPLE; + extern double *regress_dist_ptpath (Point *pt, PATH *path); extern double *regress_path_dist (PATH *p1, PATH *p2); extern PATH *poly2path (POLYGON *poly);