]> granicus.if.org Git - postgis/commitdiff
Deleted prototype for isspace() in postgis.h
authorSandro Santilli <strk@keybit.net>
Tue, 8 Jun 2004 15:18:12 +0000 (15:18 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 8 Jun 2004 15:18:12 +0000 (15:18 +0000)
and included <ctype.h> in postgis_inout.c,
which is the only module calling isspace().
This was needed to compile postgis against PG75(CVS).

git-svn-id: http://svn.osgeo.org/postgis/trunk@609 b70326c6-7e19-0410-871a-916f4a2858ee

postgis.h
postgis_inout.c

index 9a31b3a7935c3e668ea13943390c685130556d65..f1dce523ad40ff1625eeebbe2fff8f401dc906a7 100644 (file)
--- a/postgis.h
+++ b/postgis.h
  *
  **********************************************************************
  * $Log$
+ * Revision 1.45  2004/06/08 15:18:12  strk
+ * Deleted prototype for isspace() in postgis.h
+ * and included <ctype.h> in postgis_inout.c,
+ * which is the only module calling isspace().
+ * This was needed to compile postgis against PG75(CVS).
+ *
  * Revision 1.44  2004/06/03 16:44:56  strk
  * Added expand_geometry - expand(geometry, int8)
  *
@@ -350,8 +356,6 @@ typedef struct histotag
 
 //prototypes
 
-     int isspace(int c);
-
 
 /* constructors*/
 POLYGON3D      *make_polygon(int nrings, int *pts_per_ring, POINT3D *pts, int npoints, int *size);
index 949aa2bff9b3d52189e9437c0b3e65b9b400a401..518dad0406e02c7d64b593be843b2c81b28ac273 100644 (file)
  *
  **********************************************************************
  * $Log$
+ * Revision 1.43  2004/06/08 15:18:12  strk
+ * Deleted prototype for isspace() in postgis.h
+ * and included <ctype.h> in postgis_inout.c,
+ * which is the only module calling isspace().
+ * This was needed to compile postgis against PG75(CVS).
+ *
  * Revision 1.42  2004/06/03 09:45:57  strk
  * infinite geoms handled in WKB parser
  *
 #include <string.h>
 #include <stdio.h>
 #include <errno.h>
+#include <ctype.h>
 
 #include "access/gist.h"
 #include "access/itup.h"