]> granicus.if.org Git - postgis/commitdiff
getMachineEndian exported
authorSandro Santilli <strk@keybit.net>
Fri, 17 Dec 2004 10:10:01 +0000 (10:10 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 17 Dec 2004 10:10:01 +0000 (10:10 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1158 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/lwgparse.c
lwgeom/wktparse.h

index 8965e1d9ef20248e46b9b911f78c6bbdfccf58ad..1768a86ff8622ed94f3374f9f34b5a386fd79251 100644 (file)
 void set_zm(char z, char m);
 void close_parser(void);
 
-static int endian_check_int = 1; // dont modify this!!!
-
 #undef LITTLE_ENDIAN
 #define LITTLE_ENDIAN 1
-static char getMachineEndian()
+char getMachineEndian()
 {
+       static int endian_check_int = 1; // dont modify this!!!
+
        return *((char *) &endian_check_int); // 0 = big endian, 1 = little endian
 }
 
index f975845d84574d34e227985063132edc442bd969..2b13051fafb7f6ea0415026f2b914e6ed63acced 100644 (file)
@@ -71,3 +71,4 @@ char* unparse_WKT(byte* serialized, allocator alloc,freeor free);
 char* unparse_WKB(byte* serialized, allocator alloc,freeor free, unsigned int endian);
 
 
+char getMachineEndian();