summaryrefslogtreecommitdiff
path: root/haiku
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-11-24 21:06:36 -0700
committerKarl Williamson <public@khwilliamson.com>2012-11-24 21:45:22 -0700
commit5aaab254c02795622bdf42e348ad8473aa1fc643 (patch)
tree341c84b4a4867c96c3bcd4a63d34c244356054ce /haiku
parenta8bd0d47f960000fee81e97d55dd5e8bac15e034 (diff)
downloadperl-5aaab254c02795622bdf42e348ad8473aa1fc643.tar.gz
Remove "register" declarations
This finishes the removal of register declarations started by eb578fdb5569b91c28466a4d1939e381ff6ceaf4. It neglected the ones in function parameter declarations, and didn't include things in dist, ext, and lib, which this does include
Diffstat (limited to 'haiku')
-rw-r--r--haiku/Haiku/Haiku.pm2
-rw-r--r--haiku/Haiku/Haiku.xs2
2 files changed, 2 insertions, 2 deletions
diff --git a/haiku/Haiku/Haiku.pm b/haiku/Haiku/Haiku.pm
index 2577bec496..205df732a2 100644
--- a/haiku/Haiku/Haiku.pm
+++ b/haiku/Haiku/Haiku.pm
@@ -8,7 +8,7 @@ BEGIN {
require DynaLoader;
@ISA = qw|Exporter DynaLoader|;
- $VERSION = '0.34';
+ $VERSION = '0.35';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/haiku/Haiku/Haiku.xs b/haiku/Haiku/Haiku.xs
index c5a121dad1..c544e22bc0 100644
--- a/haiku/Haiku/Haiku.xs
+++ b/haiku/Haiku/Haiku.xs
@@ -20,7 +20,7 @@ haiku_do_debugger(const char* format,...)
}
static void
-haiku_do_debug_printf(pTHX_ register SV *sv,
+haiku_do_debug_printf(pTHX_ SV *sv,
void (*printfFunc)(const char*,...))
{
dVAR;