]> granicus.if.org Git - postgis/commitdiff
added prototypes for geometry_{le,ge,cmp}
authorSandro Santilli <strk@keybit.net>
Wed, 19 Nov 2003 15:44:51 +0000 (15:44 +0000)
committerSandro Santilli <strk@keybit.net>
Wed, 19 Nov 2003 15:44:51 +0000 (15:44 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@370 b70326c6-7e19-0410-871a-916f4a2858ee

postgis.h

index a3e2feb097933458fbdce51363459d49a058c70a..06ea9833403a065d52f25dd15c5e4bd982359888 100644 (file)
--- a/postgis.h
+++ b/postgis.h
@@ -11,6 +11,9 @@
  *
  **********************************************************************
  * $Log$
+ * Revision 1.38  2003/11/19 15:44:51  strk
+ * added prototypes for geometry_{le,ge,cmp}
+ *
  * Revision 1.37  2003/10/28 16:57:35  strk
  * Added collect_garray() function.
  *
@@ -492,8 +495,11 @@ Datum perimeter2d(PG_FUNCTION_ARGS);
 Datum truly_inside(PG_FUNCTION_ARGS);
 
 Datum geometry_lt(PG_FUNCTION_ARGS);
-Datum geometry_gt(PG_FUNCTION_ARGS);
+Datum geometry_le(PG_FUNCTION_ARGS);
 Datum geometry_eq(PG_FUNCTION_ARGS);
+Datum geometry_gt(PG_FUNCTION_ARGS);
+Datum geometry_ge(PG_FUNCTION_ARGS);
+Datum geometry_cmp(PG_FUNCTION_ARGS);
 
 Datum npoints(PG_FUNCTION_ARGS);
 Datum nrings(PG_FUNCTION_ARGS);