From: Robin Barker Date: Thu, 10 Jan 2008 18:50:12 +0000 (+0000) Subject: From: "Robin Barker" X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b48cf39454aea22003054f8b0a85963f328fe30;p=p5sagit%2Fp5-mst-13.2.git From: "Robin Barker" Message-ID: <46A0F33545E63740BC7563DE59CA9C6D0939C3@exchsvr2.npl.ad.local> More consting. p4raw-id: //depot/perl@32947 --- diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 867d35b..3092934 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -386,7 +386,7 @@ unsigned long strtoul (const char *, char **, int); #endif static int -not_here(char *s) +not_here(const char *s) { croak("POSIX::%s not implemented on this architecture", s); return -1; @@ -1662,7 +1662,7 @@ strtol(str, base = 0) void strtoul(str, base = 0) - char * str + const char * str int base PREINIT: unsigned long num;