summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--perlio.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/perlio.h b/perlio.h
index c55cbf6159..34968c3a29 100644
--- a/perlio.h
+++ b/perlio.h
@@ -132,19 +132,19 @@ PERL_EXPORT_C void PerlIO_clone(pTHX_ PerlInterpreter *proto,
* can set how it wants.
*/
-#ifdef PERL_CORE
+# ifdef PERL_CORE
/* Make a choice for perl core code
- currently this is set to try and catch lingering raw stdio calls.
This is a known issue with some non UNIX ports which still use
"native" stdio features.
*/
-#ifndef PERLIO_NOT_STDIO
-#define PERLIO_NOT_STDIO 1
-#endif
-#else
-#ifndef PERLIO_NOT_STDIO
-#define PERLIO_NOT_STDIO 0
-#endif
+# ifndef PERLIO_NOT_STDIO
+# define PERLIO_NOT_STDIO 1
+# endif
+ #else
+# ifndef PERLIO_NOT_STDIO
+# define PERLIO_NOT_STDIO 0
+# endif
#endif
#ifdef PERLIO_NOT_STDIO