summaryrefslogtreecommitdiff
path: root/regen/unicode_constants.pl
diff options
context:
space:
mode:
Diffstat (limited to 'regen/unicode_constants.pl')
-rw-r--r--regen/unicode_constants.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/regen/unicode_constants.pl b/regen/unicode_constants.pl
index cbe317926c..64ae84a649 100644
--- a/regen/unicode_constants.pl
+++ b/regen/unicode_constants.pl
@@ -12,8 +12,8 @@ my $out_fh = open_new('unicode_constants.h', '>',
print $out_fh <<END;
-#ifndef H_UNICODE_CONSTANTS /* Guard against nested #includes */
-#define H_UNICODE_CONSTANTS 1
+#ifndef PERL_UNICODE_CONSTANTS_H_ /* Guard against nested #includes */
+#define PERL_UNICODE_CONSTANTS_H_ 1
/* This file contains #defines for the version of Unicode being used and
* various Unicode code points. The values the code point macros expand to
@@ -198,7 +198,7 @@ if (@cwcm) {
}
}
-print $out_fh "\n#endif /* H_UNICODE_CONSTANTS */\n";
+print $out_fh "\n#endif /* PERL_UNICODE_CONSTANTS_H_ */\n";
read_only_bottom_close_and_rename($out_fh);