summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorAndy Broad <andy@broad.ology.org.uk>2015-09-13 14:53:59 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2015-09-16 07:44:31 -0400
commitea34f6bdec386db6b5e951fae85f430965078a86 (patch)
tree3c1548f60453e691f5111f305fc886b746190a84 /sv.c
parenta843b009aecc0fdd377763bdaee3521fc77b160c (diff)
downloadperl-ea34f6bdec386db6b5e951fae85f430965078a86.tar.gz
amigaos4: use #ifdef/ifndef __amigaos4__ when feasible
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index aec1568be4..dc2ba8be39 100644
--- a/sv.c
+++ b/sv.c
@@ -14408,7 +14408,7 @@ perl_clone(PerlInterpreter *proto_perl, UV flags)
/* perlhost.h so we need to call into it
to clone the host, CPerlHost should have a c interface, sky */
-#if !defined(__amigaos4__)
+#ifndef __amigaos4__
if (flags & CLONEf_CLONE_HOST) {
return perl_clone_host(proto_perl,flags);
}