summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-10-21 21:53:48 +0000
committerNicholas Clark <nick@ccl4.org>2006-10-21 21:53:48 +0000
commit7f7c33542f58707594f96e6f05ae65c36d743b35 (patch)
treea5e30a8b206783126bc02e23be923e10796e7602 /perl.h
parent2f44961c9ce6c8fb4890c3bab297136d08c70307 (diff)
downloadperl-7f7c33542f58707594f96e6f05ae65c36d743b35.tar.gz
Semicolon consistency between PERL_FPU_INIT and the other INITs.
p4raw-id: //depot/perl@29075
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index b23439f681..3f46dd113a 100644
--- a/perl.h
+++ b/perl.h
@@ -2565,10 +2565,10 @@ typedef struct clone_params CLONE_PARAMS;
# if HAS_FLOATINGPOINT_H
# include <floatingpoint.h>
# endif
-# define PERL_FPU_INIT fpsetmask(0);
+# define PERL_FPU_INIT fpsetmask(0)
# else
# if defined(SIGFPE) && defined(SIG_IGN) && !defined(PERL_MICRO)
-# define PERL_FPU_INIT PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN);
+# define PERL_FPU_INIT PL_sigfpe_saved = (Sighandler_t) signal(SIGFPE, SIG_IGN)
# define PERL_FPU_PRE_EXEC { Sigsave_t xfpe; rsignal_save(SIGFPE, PL_sigfpe_saved, &xfpe);
# define PERL_FPU_POST_EXEC rsignal_restore(SIGFPE, &xfpe); }
# else