aboutsummaryrefslogtreecommitdiff
path: root/src/dmstor.c
diff options
context:
space:
mode:
authorFrank Warmerdam <warmerdam@pobox.com>2002-07-08 02:32:05 +0000
committerFrank Warmerdam <warmerdam@pobox.com>2002-07-08 02:32:05 +0000
commit22b01721aee54803d0d0d5566e4a9b2ef1384382 (patch)
tree1a2f1b797d3c9549518a5cc778201f1366e10e88 /src/dmstor.c
parentd26cb6597ecd1c6b612d0159651cd607f9003a09 (diff)
downloadPROJ-22b01721aee54803d0d0d5566e4a9b2ef1384382.tar.gz
PROJ-22b01721aee54803d0d0d5566e4a9b2ef1384382.zip
ensure clean C++ builds
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1025 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/dmstor.c')
-rw-r--r--src/dmstor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dmstor.c b/src/dmstor.c
index e4b6064a..ecfac1fc 100644
--- a/src/dmstor.c
+++ b/src/dmstor.c
@@ -6,7 +6,7 @@ static const char SCCSID[]="@(#)dmstor.c 4.4 93/06/16 GIE REL";
#include <string.h>
#include <ctype.h>
-static double proj_strtod(const char *nptr, char **endptr);
+static double proj_strtod(char *nptr, char **endptr);
/* following should be sufficient for all but the rediculous */
#define MAX_WORK 64
@@ -80,7 +80,7 @@ dmstor(const char *is, char **rs) {
}
static double
-proj_strtod(const char *nptr, char **endptr)
+proj_strtod(char *nptr, char **endptr)
{
char c, *cp = nptr;