diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-03-02 12:05:26 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:59 -0600 |
commit | 3cd96634230fc4a063f58b18b2aa85cae3ffb1b2 (patch) | |
tree | 5b4d521ce8e58ca46530ec95d85e693886b45e46 /utf8.h | |
parent | d53cee757ea431b386d44741eaf348d982e3dff2 (diff) | |
download | perl-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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |