summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-03-02 12:05:26 -0700
committerKarl Williamson <public@khwilliamson.com>2013-08-29 09:55:59 -0600
commit3cd96634230fc4a063f58b18b2aa85cae3ffb1b2 (patch)
tree5b4d521ce8e58ca46530ec95d85e693886b45e46 /utf8.h
parentd53cee757ea431b386d44741eaf348d982e3dff2 (diff)
downloadperl-3cd96634230fc4a063f58b18b2aa85cae3ffb1b2.tar.gz
utf8.h: Move #includes
These two files were only being #included for non-ebcdic compiles; they should be included always.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/utf8.h b/utf8.h
index 3fb4fd2e3e..6a76210d02 100644
--- a/utf8.h
+++ b/utf8.h
@@ -26,6 +26,9 @@
# define USE_UTF8_IN_NAMES (PL_hints & HINT_UTF8)
#endif
+#include "regcharclass.h"
+#include "unicode_constants.h"
+
/* For to_utf8_fold_flags, q.v. */
#define FOLD_FLAGS_LOCALE 0x1
#define FOLD_FLAGS_FULL 0x2
@@ -101,9 +104,6 @@ EXTCONST unsigned char PL_utf8skip[];
END_EXTERN_C
-#include "regcharclass.h"
-#include "unicode_constants.h"
-
/* Native character to/from iso-8859-1. Are the identity functions on ASCII
* platforms */
#define NATIVE_TO_LATIN1(ch) (ch)