]> granicus.if.org Git - postgis/commitdiff
remove file that should never have been added
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 11 Jun 2009 16:31:09 +0000 (16:31 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 11 Jun 2009 16:31:09 +0000 (16:31 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4167 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/test.c [deleted file]

diff --git a/postgis/test.c b/postgis/test.c
deleted file mode 100644 (file)
index 12f8006..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdio.h>
-#include "lwgeom.h"
-
-int main()
-{
-       LWGEOM point;
-
-       /* Construct a point2d */
-       point = make_lwpoint2d(-1, 10, 20);
-
-       /* Print WKT end HEXWKB */
-       printf("EWKT: %s\n", lwgeom_to_ewkt(point));
-       printf("HEXWKB: %s\n", lwgeom_to_hexwkb(point,-1));
-
-       return 1;
-}