From: Steve Hay <SteveHay@planit.com>
Date: Mon, 6 Jun 2005 07:52:59 +0000 (+0000)
Subject: NORETURN_FUNCTION_END is not a complete statement
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c38693a57e5a1ebfaec300971021fd2f1024e49d;p=p5sagit%2Fp5-mst-13.2.git

NORETURN_FUNCTION_END is not a complete statement

(Fix compilation error following change #24702)
p4raw-link: @24702 on //depot/perl: 7698c435fea241ff5aec7932afdb5f821dde55f3

p4raw-id: //depot/perl@24713
---

diff --git a/ext/IO/IO.xs b/ext/IO/IO.xs
index 79ffb90..b3125aa 100644
--- a/ext/IO/IO.xs
+++ b/ext/IO/IO.xs
@@ -54,7 +54,7 @@ static int
 not_here(const char *s)
 {
     croak("%s not implemented on this architecture", s);
-    NORETURN_FUNCTION_END
+    NORETURN_FUNCTION_END;
 }