summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-11-06 09:00:44 -0700
committerKarl Williamson <khw@cpan.org>2020-11-06 09:39:12 -0700
commit5fd7c63cc75e7ead6d3044131e33e295b911afb0 (patch)
treefee4380073771d15bee5d7c87c8ec49a99d594b5 /perl.h
parente437a9bd1dea4f1b6e09a65d047fdd904f60d40f (diff)
downloadperl-5fd7c63cc75e7ead6d3044131e33e295b911afb0.tar.gz
perl.h: Fix misplaced #ifdef
This fixes GH #18295 The #ifdef introduced in 6bcc290 was meant to go after the line that it actually did
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 6c1d9a266d..d0066f5168 100644
--- a/perl.h
+++ b/perl.h
@@ -7299,10 +7299,10 @@ extern void moncontrol(int);
# define PIPE_OPEN_MODE PIPESOCK_MODE
#endif
-#ifdef PERL_CORE
-
#define PERL_MAGIC_UTF8_CACHESIZE 2
+#ifdef PERL_CORE
+
#define PERL_UNICODE_STDIN_FLAG 0x0001
#define PERL_UNICODE_STDOUT_FLAG 0x0002
#define PERL_UNICODE_STDERR_FLAG 0x0004